From d9971900dd94a746b66144072bfa85e5fc497361 Mon Sep 17 00:00:00 2001 From: Gopi Katwala Date: Sat, 8 Jun 2019 22:19:59 -0400 Subject: [PATCH] Updated Service Type resource to accept the Request object rather than path paramenters --- .../src/main/java/com/astute/resources/POResource.java | 2 -- .../main/java/com/astute/resources/ServiceTypeResource.java | 4 ++-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/AstuteSystem/src/main/java/com/astute/resources/POResource.java b/AstuteSystem/src/main/java/com/astute/resources/POResource.java index 7f0879a..fe20b81 100644 --- a/AstuteSystem/src/main/java/com/astute/resources/POResource.java +++ b/AstuteSystem/src/main/java/com/astute/resources/POResource.java @@ -113,7 +113,5 @@ public class POResource { authService.authenticateSession(sessionId); return new ApiResponse(POService.getFeeTypes()).toResponse(); } - - } diff --git a/AstuteSystem/src/main/java/com/astute/resources/ServiceTypeResource.java b/AstuteSystem/src/main/java/com/astute/resources/ServiceTypeResource.java index 976c88e..e3b5a9a 100644 --- a/AstuteSystem/src/main/java/com/astute/resources/ServiceTypeResource.java +++ b/AstuteSystem/src/main/java/com/astute/resources/ServiceTypeResource.java @@ -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(); }