From 7478dc417341c931a98d56642e791f91c83847b2 Mon Sep 17 00:00:00 2001 From: Megala Date: Thu, 20 Oct 2016 10:29:41 +0530 Subject: [PATCH] Reverting changes to API --- .../api/services/impl/ConfigurationMgtServiceImpl.java | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/components/mobile-plugins/windows-plugin/org.wso2.carbon.device.mgt.mobile.windows.api/src/main/java/org/wso2/carbon/device/mgt/mobile/windows/api/services/impl/ConfigurationMgtServiceImpl.java b/components/mobile-plugins/windows-plugin/org.wso2.carbon.device.mgt.mobile.windows.api/src/main/java/org/wso2/carbon/device/mgt/mobile/windows/api/services/impl/ConfigurationMgtServiceImpl.java index 2d299349e..1802df8dc 100644 --- a/components/mobile-plugins/windows-plugin/org.wso2.carbon.device.mgt.mobile.windows.api/src/main/java/org/wso2/carbon/device/mgt/mobile/windows/api/services/impl/ConfigurationMgtServiceImpl.java +++ b/components/mobile-plugins/windows-plugin/org.wso2.carbon.device.mgt.mobile.windows.api/src/main/java/org/wso2/carbon/device/mgt/mobile/windows/api/services/impl/ConfigurationMgtServiceImpl.java @@ -35,7 +35,6 @@ import org.wso2.carbon.device.mgt.mobile.windows.api.services.ConfigurationMgtSe import javax.jws.WebService; import javax.ws.rs.*; -import javax.ws.rs.core.MediaType; import javax.ws.rs.core.Response; import java.util.ArrayList; import java.util.List; @@ -136,8 +135,8 @@ public class ConfigurationMgtServiceImpl implements ConfigurationMgtService { @GET @Path("/license") - @Produces(MediaType.TEXT_PLAIN) - public Response getLicense(@HeaderParam("If-Modified-Since") String ifModifiedSince) { + public Response getLicense( + @HeaderParam("If-Modified-Since") String ifModifiedSince) { License license; try { license = @@ -150,7 +149,7 @@ public class ConfigurationMgtServiceImpl implements ConfigurationMgtService { throw new UnexpectedServerErrorException( new ErrorResponse.ErrorResponseBuilder().setCode(500l).setMessage(msg).build()); } - return Response.status(Response.Status.OK).entity((license == null) ? null : license.getText()).build(); + return Response.status(Response.Status.OK).entity(license).build(); } }