mirror of
https://github.com/dyiop/astute.git
synced 2025-04-05 21:10:16 -04:00
Add files via upload
This commit is contained in:
parent
1f6c1c4d57
commit
8f2168f47e
|
@ -21,14 +21,14 @@ public class CustomerResource {
|
|||
}
|
||||
|
||||
@GET
|
||||
public Response getCustomers(@QueryParam("customerId") int customerId)
|
||||
public Response getCustomers(@QueryParam("customerId") String customerId)
|
||||
throws AstuteException {
|
||||
return new ApiResponse(service.getCustomers(customerId)).toResponse();
|
||||
}
|
||||
|
||||
@Path("/{customerId}")
|
||||
@PUT
|
||||
public Response updateCustomer(@PathParam("customerId") int customerId, CustomerRequest request)
|
||||
public Response updateCustomer(@PathParam("customerId") String customerId, CustomerRequest request)
|
||||
throws AstuteException {
|
||||
System.out.println("in updateCustomer()");
|
||||
service.updateCustomer(customerId, request.getCustomerName(), request.getBillToDept(), request.getAdd1(),
|
||||
|
@ -40,7 +40,7 @@ public class CustomerResource {
|
|||
public Response createCustomer(CustomerRequest request)
|
||||
throws AstuteException {
|
||||
System.out.println("in AstuteSyste createCustomer()");
|
||||
return new ApiResponse(service.createCustomer(request.getCustomerName(), request.getBillToDept(), request.getAdd1(),
|
||||
return new ApiResponse(service.createCustomer(request.getCustomerId(), request.getCustomerName(), request.getBillToDept(), request.getAdd1(),
|
||||
request.getAdd2(), request.getCity(), request.getState(), request.getZip(), request.getZiplast4(), request.getEmail(), request.getPhone(), request.getFax())).toResponse();
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user