Interface UserPoliciesResource
- 
 public interface UserPoliciesResource- Author:
- Pedro Igor
 
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description javax.ws.rs.core.Responsecreate(UserPolicyRepresentation representation)UserPolicyResourcefindById(String id)UserPolicyRepresentationfindByName(String name)
 
- 
- 
- 
Method Detail- 
create@POST @Consumes("application/json") @Produces("application/json") javax.ws.rs.core.Response create(UserPolicyRepresentation representation)
 - 
findById@Path("{id}") UserPolicyResource findById(@PathParam("id") String id)
 - 
findByName@Path("/search") @GET @Produces("application/json") UserPolicyRepresentation findByName(@QueryParam("name") String name)
 
- 
 
-