mirror of
https://github.com/dyiop/astute.git
synced 2025-04-05 13:00:16 -04:00
Updated Service Type resource to accept the Request object rather than path paramenters
This commit is contained in:
parent
c2b84160ad
commit
d9971900dd
|
@ -113,7 +113,5 @@ public class POResource {
|
|||
authService.authenticateSession(sessionId);
|
||||
return new ApiResponse(POService.getFeeTypes()).toResponse();
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
|
|
@ -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();
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user