mirror of
https://repository.entgra.net/community/device-mgt-plugins.git
synced 2025-09-16 23:42:15 +00:00
Reverting changes to API
This commit is contained in:
parent
5e3bead760
commit
7478dc4173
@ -35,7 +35,6 @@ import org.wso2.carbon.device.mgt.mobile.windows.api.services.ConfigurationMgtSe
|
|||||||
|
|
||||||
import javax.jws.WebService;
|
import javax.jws.WebService;
|
||||||
import javax.ws.rs.*;
|
import javax.ws.rs.*;
|
||||||
import javax.ws.rs.core.MediaType;
|
|
||||||
import javax.ws.rs.core.Response;
|
import javax.ws.rs.core.Response;
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
@ -136,8 +135,8 @@ public class ConfigurationMgtServiceImpl implements ConfigurationMgtService {
|
|||||||
|
|
||||||
@GET
|
@GET
|
||||||
@Path("/license")
|
@Path("/license")
|
||||||
@Produces(MediaType.TEXT_PLAIN)
|
public Response getLicense(
|
||||||
public Response getLicense(@HeaderParam("If-Modified-Since") String ifModifiedSince) {
|
@HeaderParam("If-Modified-Since") String ifModifiedSince) {
|
||||||
License license;
|
License license;
|
||||||
try {
|
try {
|
||||||
license =
|
license =
|
||||||
@ -150,7 +149,7 @@ public class ConfigurationMgtServiceImpl implements ConfigurationMgtService {
|
|||||||
throw new UnexpectedServerErrorException(
|
throw new UnexpectedServerErrorException(
|
||||||
new ErrorResponse.ErrorResponseBuilder().setCode(500l).setMessage(msg).build());
|
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();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user