Interface ResourceScopesResource
-
public interface ResourceScopesResource
- Author:
- Pedro Igor
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description javax.ws.rs.core.Response
create(ScopeRepresentation scope)
ScopeRepresentation
findByName(String name)
ResourceScopeResource
scope(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)
-
-