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