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