public interface ClientScopesResource
| Modifier and Type | Method and Description |
|---|---|
javax.ws.rs.core.Response |
create(ClientScopeRepresentation clientScopeRepresentation) |
List<ClientScopeRepresentation> |
findAll() |
javax.ws.rs.core.Response |
generateAudienceClientScope(String clientId)
Generate new client scope for specified service client.
|
ClientScopeResource |
get(String id) |
@Path(value="{id}")
ClientScopeResource get(@PathParam(value="id")
String id)
@POST @Consumes(value="application/json") javax.ws.rs.core.Response create(ClientScopeRepresentation clientScopeRepresentation)
@GET @Produces(value="application/json") List<ClientScopeRepresentation> findAll()
@Path(value="generate-audience-client-scope")
@POST
javax.ws.rs.core.Response generateAudienceClientScope(@QueryParam(value="clientId")
String clientId)
clientId - Client ID of service client (typically bearer-only client)Copyright © 2018 JBoss by Red Hat. All rights reserved.