Interface ClientScopesResource
-
public interface ClientScopesResource
- Author:
- rodrigo.sasaki@icarros.com.br
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description javax.ws.rs.core.Response
create(ClientScopeRepresentation clientScopeRepresentation)
List<ClientScopeRepresentation>
findAll()
ClientScopeResource
get(String id)
-
-
-
Method Detail
-
get
@Path("{id}") ClientScopeResource get(@PathParam("id") String id)
-
create
@POST @Consumes("application/json") javax.ws.rs.core.Response create(ClientScopeRepresentation clientScopeRepresentation)
-
findAll
@GET @Produces("application/json") List<ClientScopeRepresentation> findAll()
-
-