Uses of Class
org.keycloak.representations.idm.ClientScopeRepresentation
-
Packages that use ClientScopeRepresentation Package Description org.keycloak.admin.client.resource org.keycloak.models.utils org.keycloak.representations.idm org.keycloak.services.resources.admin -
-
Uses of ClientScopeRepresentation in org.keycloak.admin.client.resource
Methods in org.keycloak.admin.client.resource that return ClientScopeRepresentation Modifier and Type Method Description ClientScopeRepresentation
ClientScopeResource. toRepresentation()
Methods in org.keycloak.admin.client.resource that return types with arguments of type ClientScopeRepresentation Modifier and Type Method Description List<ClientScopeRepresentation>
ClientScopesResource. findAll()
List<ClientScopeRepresentation>
ClientResource. getDefaultClientScopes()
Get default client scopes.List<ClientScopeRepresentation>
RealmResource. getDefaultDefaultClientScopes()
List<ClientScopeRepresentation>
RealmResource. getDefaultOptionalClientScopes()
List<ClientScopeRepresentation>
ClientResource. getOptionalClientScopes()
Get optional client scopes.Methods in org.keycloak.admin.client.resource with parameters of type ClientScopeRepresentation Modifier and Type Method Description javax.ws.rs.core.Response
ClientScopesResource. create(ClientScopeRepresentation clientScopeRepresentation)
void
ClientScopeResource. update(ClientScopeRepresentation rep)
-
Uses of ClientScopeRepresentation in org.keycloak.models.utils
Methods in org.keycloak.models.utils that return ClientScopeRepresentation Modifier and Type Method Description static ClientScopeRepresentation
ModelToRepresentation. toRepresentation(ClientScopeModel clientScopeModel)
Methods in org.keycloak.models.utils with parameters of type ClientScopeRepresentation Modifier and Type Method Description static ClientScopeModel
RepresentationToModel. createClientScope(KeycloakSession session, RealmModel realm, ClientScopeRepresentation resourceRep)
static void
RepresentationToModel. updateClientScope(ClientScopeRepresentation rep, ClientScopeModel resource)
-
Uses of ClientScopeRepresentation in org.keycloak.representations.idm
Fields in org.keycloak.representations.idm with type parameters of type ClientScopeRepresentation Modifier and Type Field Description protected List<ClientScopeRepresentation>
RealmRepresentation. clientScopes
Methods in org.keycloak.representations.idm that return types with arguments of type ClientScopeRepresentation Modifier and Type Method Description List<ClientScopeRepresentation>
RealmRepresentation. getClientScopes()
Method parameters in org.keycloak.representations.idm with type arguments of type ClientScopeRepresentation Modifier and Type Method Description void
RealmRepresentation. setClientScopes(List<ClientScopeRepresentation> clientScopes)
-
Uses of ClientScopeRepresentation in org.keycloak.services.resources.admin
Methods in org.keycloak.services.resources.admin that return ClientScopeRepresentation Modifier and Type Method Description ClientScopeRepresentation
ClientScopeResource. getClientScope()
Get representation of the client scopeMethods in org.keycloak.services.resources.admin that return types with arguments of type ClientScopeRepresentation Modifier and Type Method Description Stream<ClientScopeRepresentation>
ClientScopesResource. getClientScopes()
Get client scopes belonging to the realm Returns a list of client scopes belonging to the realmStream<ClientScopeRepresentation>
ClientResource. getDefaultClientScopes()
Get default client scopes.Stream<ClientScopeRepresentation>
RealmAdminResource. getDefaultDefaultClientScopes()
Get realm default client scopes.Stream<ClientScopeRepresentation>
RealmAdminResource. getDefaultOptionalClientScopes()
Get realm optional client scopes.Stream<ClientScopeRepresentation>
ClientResource. getOptionalClientScopes()
Get optional client scopes.Methods in org.keycloak.services.resources.admin with parameters of type ClientScopeRepresentation Modifier and Type Method Description javax.ws.rs.core.Response
ClientScopesResource. createClientScope(ClientScopeRepresentation rep)
Create a new client scope Client Scope's name must be unique!javax.ws.rs.core.Response
ClientScopeResource. update(ClientScopeRepresentation rep)
Update the client scopestatic void
ClientScopeResource. validateDynamicClientScope(ClientScopeRepresentation clientScope)
Performs some validation based on attributes combinations and format.void
ClientScopeResource. validateDynamicScopeUpdate(ClientScopeRepresentation rep)
Makes sure that an update that makes a Client Scope Dynamic is rejected if the Client Scope is assigned to a client as a default scope.
-