Add files via upload

This commit is contained in:
gopi17701 2018-09-23 12:22:52 -04:00 committed by GitHub
parent 37a33887b9
commit 5f2449d78c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -73,4 +73,13 @@ public class POResource {
request.getQty(), request.getFee(), request.getServiceTypeId(), request.getRemainingQuantity());
return new ApiResponse(ApiResponse.UPDATE_ACCESS_SUCESS).toResponse();
}
// Misc
@Path("/serviceTypes")
@GET
public Response getServiceTypes() throws AstuteException {
return new ApiResponse(POService.getServiceTypes()).toResponse();
}
}