Add files via upload

This commit is contained in:
gopi17701 2018-09-15 22:48:10 -04:00 committed by GitHub
parent f5d966783b
commit 3c9484eb9c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -26,6 +26,13 @@ public class CustomerResource {
return new ApiResponse(service.getCustomers(customerId)).toResponse();
}
@Path("/{poNumber}")
@GET
public Response getCustomer(@PathParam("poNumber") String poNumber)
throws AstuteException {
return new ApiResponse(service.getCustomer(poNumber)).toResponse();
}
@Path("/{customerId}")
@PUT
public Response updateCustomer(@PathParam("customerId") String customerId, CustomerRequest request)