Interface ResourceScopesResource
- 
 public interface ResourceScopesResource- Author:
- Pedro Igor
 
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description javax.ws.rs.core.Responsecreate(ScopeRepresentation scope)ScopeRepresentationfindByName(String name)ResourceScopeResourcescope(String id)List<ScopeRepresentation>scopes()
 
- 
- 
- 
Method Detail- 
create@POST @Consumes("application/json") @Produces("application/json") javax.ws.rs.core.Response create(ScopeRepresentation scope)
 - 
scope@Path("{id}") ResourceScopeResource scope(@PathParam("id") String id)
 - 
scopes@GET @Produces("application/json") List<ScopeRepresentation> scopes()
 - 
findByName@Path("/search") @GET @Produces("application/json") ScopeRepresentation findByName(@QueryParam("name") String name)
 
- 
 
-