Interface GroupPoliciesResource
-
public interface GroupPoliciesResource
- Author:
- Pedro Igor
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description javax.ws.rs.core.Response
create(GroupPolicyRepresentation representation)
GroupPolicyResource
findById(String id)
GroupPolicyRepresentation
findByName(String name)
-
-
-
Method Detail
-
create
@POST @Consumes("application/json") @Produces("application/json") javax.ws.rs.core.Response create(GroupPolicyRepresentation representation)
-
findById
@Path("{id}") GroupPolicyResource findById(@PathParam("id") String id)
-
findByName
@Path("/search") @GET @Produces("application/json") GroupPolicyRepresentation findByName(@QueryParam("name") String name)
-
-