Package lumis.portal.rest.resource
Class ServiceInstanceResource
- java.lang.Object
-
- lumis.portal.rest.resource.ServiceInstanceResource
-
@Path("/{restShortName}") public class ServiceInstanceResource extends Object
Resource that treats all rest request for Service Instances (Content, Doui and non-doui). This resource forwards the request to sub-resources in the class that represents the service implementation. All methods, that will be sub-resource, must have the method annotation e.g. @GET, @POST, @PUT or- Since:
- 6.1.0
- Version:
- $Revision: 19108 $ $Date: 2016-06-01 00:01:58 -0300 (Wed, 01 Jun 2016) $
-
-
Constructor Summary
Constructors Constructor Description ServiceInstanceResource()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description IService
customPathResource(String restShortName, UriInfo ui)
Forwards requests to the sub-resources.
-
-
-
Method Detail
-
customPathResource
@Path("/") public IService customPathResource(@PathParam("restShortName") String restShortName, @Context UriInfo ui)
Forwards requests to the sub-resources.- Parameters:
restShortName
- rest short name of the service instance target.ui
- the context of the request. This parameter contains all informations about the request.- Since:
- 6.1.0
-
-