Interface PolicyMapResource
-
- All Superinterfaces:
AuthenticatedResource
@Path("/policyMap") @Consumes("*/*") public interface PolicyMapResource extends AuthenticatedResource
API for reading from the policy map.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description PolicyResponse
getPolicy(String uri)
PolicyGroupResponse
getPolicyGroup(int typeId)
-
Methods inherited from interface com.gentics.contentnode.rest.resource.AuthenticatedResource
setSessionId
-
-
-
-
Method Detail
-
getPolicyGroup
@GET @Path("/partType/{typeId}/policyGroup") PolicyGroupResponse getPolicyGroup(@PathParam("typeId") int typeId) throws Exception
- Throws:
Exception
-
getPolicy
@GET @Path("/policy") PolicyResponse getPolicy(@QueryParam("uri") String uri) throws Exception
- Throws:
Exception
-
-