Updated Service Type resource to accept the Request object rather than path paramenters

This commit is contained in:
Gopi Katwala 2019-06-08 22:19:59 -04:00
parent c2b84160ad
commit d9971900dd
2 changed files with 2 additions and 4 deletions

View File

@ -113,7 +113,5 @@ public class POResource {
authService.authenticateSession(sessionId);
return new ApiResponse(POService.getFeeTypes()).toResponse();
}
}

View File

@ -33,11 +33,11 @@ public class ServiceTypeResource {
@Path("/{serviceTypeId}")
@PUT
public Response updateServiceType(@QueryParam("sessionId") String sessionId, @PathParam("serviceTypeId") int serviceTypeId, @QueryParam("serviceTypeDesc") String serviceTypeDesc)
public Response updateServiceType(@QueryParam("sessionId") String sessionId, ServiceTypeRequest request)
throws AstuteException {
System.out.println("in updateServiceType()");
authService.authenticateSession(sessionId);
service.updateServiceType(serviceTypeId, serviceTypeDesc);
service.updateServiceType(request.getServiceTypeId(), request.getServiceTypeDesc());
return new ApiResponse(ApiResponse.UPDATE_ACCESS_SUCESS).toResponse();
}