Interface ClientScopeResource
-
public interface ClientScopeResource
- Author:
- rodrigo.sasaki@icarros.com.br
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ProtocolMappersResource
getProtocolMappers()
RoleMappingResource
getScopeMappings()
void
remove()
ClientScopeRepresentation
toRepresentation()
void
update(ClientScopeRepresentation rep)
-
-
-
Method Detail
-
getProtocolMappers
@Path("protocol-mappers") ProtocolMappersResource getProtocolMappers()
-
getScopeMappings
@Path("/scope-mappings") RoleMappingResource getScopeMappings()
-
toRepresentation
@GET @Produces("application/json") ClientScopeRepresentation toRepresentation()
-
update
@PUT @Consumes("application/json") void update(ClientScopeRepresentation rep)
-
remove
@DELETE void remove()
-
-