Interface UserPoliciesResource
-
public interface UserPoliciesResource
- Author:
- Pedro Igor
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description javax.ws.rs.core.Response
create(UserPolicyRepresentation representation)
UserPolicyResource
findById(String id)
UserPolicyRepresentation
findByName(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)
-
-