Uses of Interface
org.keycloak.models.ClientScopeModel
-
-
Uses of ClientScopeModel in org.keycloak.migration
Methods in org.keycloak.migration that return ClientScopeModel Modifier and Type Method Description ClientScopeModel
MigrationProvider. addOIDCMicroprofileJWTClientScope(RealmModel realm)
Adds themicroprofile-jwt
optional client scope to the realm and returns the created scope.ClientScopeModel
MigrationProvider. addOIDCRolesClientScope(RealmModel realm)
Add 'roles' client scope or return it if already existsClientScopeModel
MigrationProvider. addOIDCWebOriginsClientScope(RealmModel realm)
Add 'web-origins' client scope or return it if already exists -
Uses of ClientScopeModel in org.keycloak.models
Subinterfaces of ClientScopeModel in org.keycloak.models Modifier and Type Interface Description interface
ClientModel
Fields in org.keycloak.models with type parameters of type ClientScopeModel Modifier and Type Field Description static SearchableModelField<ClientScopeModel>
ClientScopeModel.SearchableFields. ID
static SearchableModelField<ClientScopeModel>
ClientScopeModel.SearchableFields. NAME
static SearchableModelField<ClientScopeModel>
ClientScopeModel.SearchableFields. REALM_ID
Methods in org.keycloak.models that return ClientScopeModel Modifier and Type Method Description default ClientScopeModel
ClientScopeProvider. addClientScope(RealmModel realm, String name)
Creates new client scope with givenname
to the given realm.ClientScopeModel
ClientScopeProvider. addClientScope(RealmModel realm, String id, String name)
Creates new client scope with given internal ID andname
to the given realm.ClientScopeModel
RealmModel. addClientScope(String name)
Creates new client scope with the given name.ClientScopeModel
RealmModel. addClientScope(String id, String name)
Creates new client scope with the given internal ID and name.ClientScopeModel
ClientScopeModel.ClientScopeRemovedEvent. getClientScope()
ClientScopeModel
RealmModel. getClientScopeById(String id)
default ClientScopeModel
RealmProvider. getClientScopeById(String id, RealmModel realm)
Deprecated.Use the corresponding method fromClientScopeProvider
.ClientScopeModel
RealmProvider. getClientScopeById(RealmModel realm, String id)
Deprecated.Use the corresponding method fromClientScopeProvider
.default ClientScopeModel
ClientModel. getDynamicClientScope(String scope)
Returns aClientScopeModel
associated with this client.Methods in org.keycloak.models that return types with arguments of type ClientScopeModel Modifier and Type Method Description Map<String,ClientScopeModel>
ClientModel. getClientScopes(boolean defaultScope)
Return all default scopes (if 'defaultScope' is true) or all optional scopes (if 'defaultScope' is false) linked with this clientStream<ClientScopeModel>
ClientScopeProvider. getClientScopesStream(RealmModel realm)
Returns all the client scopes of the given realm as a stream.Stream<ClientScopeModel>
ClientSessionContext. getClientScopesStream()
Returns client scopes as a stream.Stream<ClientScopeModel>
RealmModel. getClientScopesStream()
Returns all client scopes of this realm as a stream.Stream<ClientScopeModel>
RealmModel. getDefaultClientScopesStream(boolean defaultScope)
Returns default client scopes of this realm either default ones or optional ones.Set<ClientScopeModel>
UserConsentModel. getGrantedClientScopes()
Methods in org.keycloak.models with parameters of type ClientScopeModel Modifier and Type Method Description void
ClientModel. addClientScope(ClientScopeModel clientScope, boolean defaultScope)
Add clientScope with this client.void
RealmModel. addDefaultClientScope(ClientScopeModel clientScope, boolean defaultScope)
Adds given client scope among default/optional client scopes of this realm.void
UserConsentModel. addGrantedClientScope(ClientScopeModel clientScope)
boolean
UserConsentModel. isClientScopeGranted(ClientScopeModel clientScope)
void
UserProvider. preRemove(ClientScopeModel clientScope)
Called when a client scope is removed.void
ClientModel. removeClientScope(ClientScopeModel clientScope)
void
ClientProvider. removeClientScope(RealmModel realm, ClientModel client, ClientScopeModel clientScope)
Unassign clientScope from the client.void
RealmModel. removeDefaultClientScope(ClientScopeModel clientScope)
Removes given client scope from default or optional client scopes of this realm.Method parameters in org.keycloak.models with type arguments of type ClientScopeModel Modifier and Type Method Description void
ClientModel. addClientScopes(Set<ClientScopeModel> clientScopes, boolean defaultScope)
Add clientScopes with this client.void
ClientProvider. addClientScopes(RealmModel realm, ClientModel client, Set<ClientScopeModel> clientScopes, boolean defaultScope)
Assign clientScopes to the client. -
Uses of ClientScopeModel in org.keycloak.models.cache.infinispan
Classes in org.keycloak.models.cache.infinispan that implement ClientScopeModel Modifier and Type Class Description class
ClientAdapter
class
ClientScopeAdapter
Fields in org.keycloak.models.cache.infinispan declared as ClientScopeModel Modifier and Type Field Description protected ClientScopeModel
ClientScopeAdapter. updated
Methods in org.keycloak.models.cache.infinispan that return ClientScopeModel Modifier and Type Method Description ClientScopeModel
RealmAdapter. addClientScope(String name)
ClientScopeModel
RealmAdapter. addClientScope(String id, String name)
ClientScopeModel
RealmCacheSession. addClientScope(RealmModel realm, String name)
ClientScopeModel
RealmCacheSession. addClientScope(RealmModel realm, String id, String name)
ClientScopeModel
RealmAdapter. getClientScopeById(String id)
ClientScopeModel
RealmCacheSession. getClientScopeById(RealmModel realm, String id)
Methods in org.keycloak.models.cache.infinispan that return types with arguments of type ClientScopeModel Modifier and Type Method Description Map<String,ClientScopeModel>
ClientAdapter. getClientScopes(boolean defaultScope)
Map<String,ClientScopeModel>
RealmCacheSession. getClientScopes(RealmModel realm, ClientModel client, boolean defaultScopes)
Stream<ClientScopeModel>
RealmAdapter. getClientScopesStream()
Stream<ClientScopeModel>
RealmCacheSession. getClientScopesStream(RealmModel realm)
Stream<ClientScopeModel>
RealmAdapter. getDefaultClientScopesStream(boolean defaultScope)
Methods in org.keycloak.models.cache.infinispan with parameters of type ClientScopeModel Modifier and Type Method Description void
ClientAdapter. addClientScope(ClientScopeModel clientScope, boolean defaultScope)
void
RealmAdapter. addDefaultClientScope(ClientScopeModel clientScope, boolean defaultScope)
void
UserCacheSession. preRemove(ClientScopeModel clientScope)
void
ClientAdapter. removeClientScope(ClientScopeModel clientScope)
void
RealmCacheSession. removeClientScope(RealmModel realm, ClientModel client, ClientScopeModel clientScope)
void
RealmAdapter. removeDefaultClientScope(ClientScopeModel clientScope)
Method parameters in org.keycloak.models.cache.infinispan with type arguments of type ClientScopeModel Modifier and Type Method Description void
ClientAdapter. addClientScopes(Set<ClientScopeModel> clientScopes, boolean defaultScope)
void
RealmCacheSession. addClientScopes(RealmModel realm, ClientModel client, Set<ClientScopeModel> clientScopes, boolean defaultScope)
-
Uses of ClientScopeModel in org.keycloak.models.cache.infinispan.entities
Constructors in org.keycloak.models.cache.infinispan.entities with parameters of type ClientScopeModel Constructor Description CachedClientScope(Long revision, RealmModel realm, ClientScopeModel model)
-
Uses of ClientScopeModel in org.keycloak.models.delegate
Classes in org.keycloak.models.delegate that implement ClientScopeModel Modifier and Type Class Description class
ClientModelLazyDelegate
static class
ClientModelLazyDelegate.WithId
Methods in org.keycloak.models.delegate that return ClientScopeModel Modifier and Type Method Description ClientScopeModel
ClientModelLazyDelegate. getDynamicClientScope(String scope)
Methods in org.keycloak.models.delegate that return types with arguments of type ClientScopeModel Modifier and Type Method Description Map<String,ClientScopeModel>
ClientModelLazyDelegate. getClientScopes(boolean defaultScope)
Methods in org.keycloak.models.delegate with parameters of type ClientScopeModel Modifier and Type Method Description void
ClientModelLazyDelegate. addClientScope(ClientScopeModel clientScope, boolean defaultScope)
void
ClientModelLazyDelegate. removeClientScope(ClientScopeModel clientScope)
Method parameters in org.keycloak.models.delegate with type arguments of type ClientScopeModel Modifier and Type Method Description void
ClientModelLazyDelegate. addClientScopes(Set<ClientScopeModel> clientScopes, boolean defaultScope)
-
Uses of ClientScopeModel in org.keycloak.models.jpa
Classes in org.keycloak.models.jpa that implement ClientScopeModel Modifier and Type Class Description class
ClientAdapter
class
ClientScopeAdapter
Methods in org.keycloak.models.jpa that return ClientScopeModel Modifier and Type Method Description ClientScopeModel
JpaRealmProvider. addClientScope(RealmModel realm, String id, String name)
ClientScopeModel
RealmAdapter. addClientScope(String name)
ClientScopeModel
RealmAdapter. addClientScope(String id, String name)
ClientScopeModel
JpaRealmProvider. getClientScopeById(RealmModel realm, String id)
ClientScopeModel
RealmAdapter. getClientScopeById(String id)
Methods in org.keycloak.models.jpa that return types with arguments of type ClientScopeModel Modifier and Type Method Description Map<String,ClientScopeModel>
ClientAdapter. getClientScopes(boolean defaultScope)
Map<String,ClientScopeModel>
JpaRealmProvider. getClientScopes(RealmModel realm, ClientModel client, boolean defaultScope)
Stream<ClientScopeModel>
JpaRealmProvider. getClientScopesStream(RealmModel realm)
Stream<ClientScopeModel>
RealmAdapter. getClientScopesStream()
Stream<ClientScopeModel>
RealmAdapter. getDefaultClientScopesStream(boolean defaultScope)
Methods in org.keycloak.models.jpa with parameters of type ClientScopeModel Modifier and Type Method Description void
ClientAdapter. addClientScope(ClientScopeModel clientScope, boolean defaultScope)
void
RealmAdapter. addDefaultClientScope(ClientScopeModel clientScope, boolean defaultScope)
void
JpaUserProvider. preRemove(ClientScopeModel clientScope)
void
ClientAdapter. removeClientScope(ClientScopeModel clientScope)
void
JpaRealmProvider. removeClientScope(RealmModel realm, ClientModel client, ClientScopeModel clientScope)
void
RealmAdapter. removeDefaultClientScope(ClientScopeModel clientScope)
static ClientScopeEntity
ClientScopeAdapter. toClientScopeEntity(ClientScopeModel model, javax.persistence.EntityManager em)
Method parameters in org.keycloak.models.jpa with type arguments of type ClientScopeModel Modifier and Type Method Description void
ClientAdapter. addClientScopes(Set<ClientScopeModel> clientScopes, boolean defaultScope)
void
JpaRealmProvider. addClientScopes(RealmModel realm, ClientModel client, Set<ClientScopeModel> clientScopes, boolean defaultScope)
-
Uses of ClientScopeModel in org.keycloak.models.map.client
Classes in org.keycloak.models.map.client that implement ClientScopeModel Modifier and Type Class Description class
AbstractClientModel<E extends AbstractEntity>
class
MapClientAdapter
Methods in org.keycloak.models.map.client that return types with arguments of type ClientScopeModel Modifier and Type Method Description Map<String,ClientScopeModel>
AbstractClientModel. getClientScopes(boolean defaultScope)
Map<String,ClientScopeModel>
MapClientProvider. getClientScopes(RealmModel realm, ClientModel client, boolean defaultScopes)
Methods in org.keycloak.models.map.client with parameters of type ClientScopeModel Modifier and Type Method Description void
AbstractClientModel. addClientScope(ClientScopeModel clientScope, boolean defaultScope)
void
AbstractClientModel. removeClientScope(ClientScopeModel clientScope)
void
MapClientProvider. removeClientScope(RealmModel realm, ClientModel client, ClientScopeModel clientScope)
Method parameters in org.keycloak.models.map.client with type arguments of type ClientScopeModel Modifier and Type Method Description void
AbstractClientModel. addClientScopes(Set<ClientScopeModel> clientScopes, boolean defaultScope)
void
MapClientProvider. addClientScopes(RealmModel realm, ClientModel client, Set<ClientScopeModel> clientScopes, boolean defaultScope)
-
Uses of ClientScopeModel in org.keycloak.models.map.clientscope
Classes in org.keycloak.models.map.clientscope that implement ClientScopeModel Modifier and Type Class Description class
AbstractClientScopeModel<E extends AbstractEntity>
class
MapClientScopeAdapter
Methods in org.keycloak.models.map.clientscope that return ClientScopeModel Modifier and Type Method Description ClientScopeModel
MapClientScopeProvider. addClientScope(RealmModel realm, String id, String name)
ClientScopeModel
MapClientScopeProvider. getClientScopeById(RealmModel realm, String id)
Methods in org.keycloak.models.map.clientscope that return types with arguments of type ClientScopeModel Modifier and Type Method Description Stream<ClientScopeModel>
MapClientScopeProvider. getClientScopesStream(RealmModel realm)
Constructor parameters in org.keycloak.models.map.clientscope with type arguments of type ClientScopeModel Constructor Description MapClientScopeProvider(KeycloakSession session, MapStorage<MapClientScopeEntity,ClientScopeModel> clientScopeStore)
-
Uses of ClientScopeModel in org.keycloak.models.map.realm
Methods in org.keycloak.models.map.realm that return ClientScopeModel Modifier and Type Method Description ClientScopeModel
MapRealmAdapter. addClientScope(String name)
ClientScopeModel
MapRealmAdapter. addClientScope(String id, String name)
ClientScopeModel
MapRealmProvider. addClientScope(RealmModel realm, String id, String name)
Deprecated.ClientScopeModel
MapRealmAdapter. getClientScopeById(String id)
ClientScopeModel
MapRealmProvider. getClientScopeById(RealmModel realm, String id)
Deprecated.Methods in org.keycloak.models.map.realm that return types with arguments of type ClientScopeModel Modifier and Type Method Description Map<String,ClientScopeModel>
MapRealmProvider. getClientScopes(RealmModel realm, ClientModel client, boolean defaultScopes)
Deprecated.Stream<ClientScopeModel>
MapRealmAdapter. getClientScopesStream()
Stream<ClientScopeModel>
MapRealmProvider. getClientScopesStream(RealmModel realm)
Deprecated.Stream<ClientScopeModel>
MapRealmAdapter. getDefaultClientScopesStream(boolean defaultScope)
Methods in org.keycloak.models.map.realm with parameters of type ClientScopeModel Modifier and Type Method Description void
MapRealmAdapter. addDefaultClientScope(ClientScopeModel clientScope, boolean defaultScope)
void
MapRealmProvider. removeClientScope(RealmModel realm, ClientModel client, ClientScopeModel clientScope)
Deprecated.void
MapRealmAdapter. removeDefaultClientScope(ClientScopeModel clientScope)
Method parameters in org.keycloak.models.map.realm with type arguments of type ClientScopeModel Modifier and Type Method Description void
MapRealmProvider. addClientScopes(RealmModel realm, ClientModel client, Set<ClientScopeModel> clientScopes, boolean defaultScope)
Deprecated. -
Uses of ClientScopeModel in org.keycloak.models.map.storage.chm
Fields in org.keycloak.models.map.storage.chm with type parameters of type ClientScopeModel Modifier and Type Field Description static Map<SearchableModelField<ClientScopeModel>,MapModelCriteriaBuilder.UpdatePredicatesFunc<Object,MapClientScopeEntity,ClientScopeModel>>
MapFieldPredicates. CLIENT_SCOPE_PREDICATES
static Map<SearchableModelField<ClientScopeModel>,MapModelCriteriaBuilder.UpdatePredicatesFunc<Object,MapClientScopeEntity,ClientScopeModel>>
MapFieldPredicates. CLIENT_SCOPE_PREDICATES
-
Uses of ClientScopeModel in org.keycloak.models.map.storage.jpa.clientScope
Method parameters in org.keycloak.models.map.storage.jpa.clientScope with type arguments of type ClientScopeModel Modifier and Type Method Description JpaClientScopeModelCriteriaBuilder
JpaClientScopeModelCriteriaBuilder. compare(SearchableModelField<? super ClientScopeModel> modelField, ModelCriteriaBuilder.Operator op, Object... value)
-
Uses of ClientScopeModel in org.keycloak.models.map.user
Methods in org.keycloak.models.map.user with parameters of type ClientScopeModel Modifier and Type Method Description void
MapUserProvider. preRemove(ClientScopeModel clientScope)
-
Uses of ClientScopeModel in org.keycloak.models.utils
Methods in org.keycloak.models.utils that return ClientScopeModel Modifier and Type Method Description static ClientScopeModel
RepresentationToModel. createClientScope(KeycloakSession session, RealmModel realm, ClientScopeRepresentation resourceRep)
static ClientScopeModel
KeycloakModelUtils. findClientScopeById(RealmModel realm, ClientModel client, String clientScopeId)
Lookup clientScope OR client by id.static ClientScopeModel
KeycloakModelUtils. getClientScopeByName(RealmModel realm, String clientScopeName)
Methods in org.keycloak.models.utils with parameters of type ClientScopeModel Modifier and Type Method Description static ClientScopeRepresentation
ModelToRepresentation. toRepresentation(ClientScopeModel clientScopeModel)
static void
RepresentationToModel. updateClientScope(ClientScopeRepresentation rep, ClientScopeModel resource)
-
Uses of ClientScopeModel in org.keycloak.protocol.oidc
Classes in org.keycloak.protocol.oidc that implement ClientScopeModel Modifier and Type Class Description class
OIDCClientSecretConfigWrapper.ReadOnlyRotatedSecretClientModel
Representation of a client model that passes information from a rotated secret.Methods in org.keycloak.protocol.oidc that return ClientScopeModel Modifier and Type Method Description ClientScopeModel
OIDCLoginProtocolFactory. addMicroprofileJWTClientScope(RealmModel newRealm)
Adds themicroprofile-jwt
optional client scope to the specified realm.ClientScopeModel
OIDCLoginProtocolFactory. addRolesClientScope(RealmModel newRealm)
ClientScopeModel
OIDCLoginProtocolFactory. addWebOriginsClientScope(RealmModel newRealm)
Methods in org.keycloak.protocol.oidc that return types with arguments of type ClientScopeModel Modifier and Type Method Description static Stream<ClientScopeModel>
TokenManager. getRequestedClientScopes(String scopeParam, ClientModel client)
Return client itself + all default client scopes of client + optional client scopes requested by scope parameterMethod parameters in org.keycloak.protocol.oidc with type arguments of type ClientScopeModel Modifier and Type Method Description static Set<RoleModel>
TokenManager. getAccess(UserModel user, ClientModel client, Stream<ClientScopeModel> clientScopes)
static boolean
TokenManager. verifyConsentStillAvailable(KeycloakSession session, UserModel user, ClientModel client, Stream<ClientScopeModel> requestedClientScopes)
-
Uses of ClientScopeModel in org.keycloak.protocol.oidc.rar.model
Methods in org.keycloak.protocol.oidc.rar.model that return ClientScopeModel Modifier and Type Method Description ClientScopeModel
IntermediaryScopeRepresentation. getScope()
Constructors in org.keycloak.protocol.oidc.rar.model with parameters of type ClientScopeModel Constructor Description IntermediaryScopeRepresentation(ClientScopeModel scope)
IntermediaryScopeRepresentation(ClientScopeModel scope, String parameter, String requestedScopeString)
-
Uses of ClientScopeModel in org.keycloak.rar
Methods in org.keycloak.rar that return ClientScopeModel Modifier and Type Method Description ClientScopeModel
AuthorizationDetails. getClientScope()
Methods in org.keycloak.rar with parameters of type ClientScopeModel Modifier and Type Method Description void
AuthorizationDetails. setClientScope(ClientScopeModel clientScope)
Constructors in org.keycloak.rar with parameters of type ClientScopeModel Constructor Description AuthorizationDetails(ClientScopeModel clientScope)
AuthorizationDetails(ClientScopeModel clientScope, AuthorizationRequestSource source, AuthorizationDetailsJSONRepresentation authorizationDetails)
-
Uses of ClientScopeModel in org.keycloak.services.migration
Methods in org.keycloak.services.migration that return ClientScopeModel Modifier and Type Method Description ClientScopeModel
DefaultMigrationProvider. addOIDCMicroprofileJWTClientScope(RealmModel realm)
ClientScopeModel
DefaultMigrationProvider. addOIDCRolesClientScope(RealmModel realm)
ClientScopeModel
DefaultMigrationProvider. addOIDCWebOriginsClientScope(RealmModel realm)
-
Uses of ClientScopeModel in org.keycloak.services.resources.admin
Fields in org.keycloak.services.resources.admin declared as ClientScopeModel Modifier and Type Field Description protected ClientScopeModel
ClientScopeResource. clientScope
Constructors in org.keycloak.services.resources.admin with parameters of type ClientScopeModel Constructor Description ClientScopeResource(RealmModel realm, AdminPermissionEvaluator auth, ClientScopeModel clientScope, KeycloakSession session, AdminEventBuilder adminEvent)
-
Uses of ClientScopeModel in org.keycloak.services.resources.admin.permissions
Methods in org.keycloak.services.resources.admin.permissions with parameters of type ClientScopeModel Modifier and Type Method Description boolean
ClientPermissionEvaluator. canManage(ClientScopeModel clientScope)
boolean
ClientPermissionEvaluator. canView(ClientScopeModel clientScope)
void
ClientPermissionEvaluator. requireManage(ClientScopeModel clientScope)
void
ClientPermissionEvaluator. requireView(ClientScopeModel clientScope)
-
Uses of ClientScopeModel in org.keycloak.services.util
Methods in org.keycloak.services.util that return types with arguments of type ClientScopeModel Modifier and Type Method Description Stream<ClientScopeModel>
DefaultClientSessionContext. getClientScopesStream()
static Stream<ClientScopeModel>
AuthorizationContextUtil. getClientScopesStreamFromAuthorizationRequestContextWithClient(KeycloakSession session, String scope)
Helper method to return a Stream of all theClientScopeModel
in the currentAuthorizationRequestContext
-
Uses of ClientScopeModel in org.keycloak.storage
Methods in org.keycloak.storage that return ClientScopeModel Modifier and Type Method Description ClientScopeModel
ClientScopeStorageManager. addClientScope(RealmModel realm, String id, String name)
ClientScopeModel
ClientScopeStorageManager. getClientScopeById(RealmModel realm, String id)
Methods in org.keycloak.storage that return types with arguments of type ClientScopeModel Modifier and Type Method Description Map<String,ClientScopeModel>
ClientStorageManager. getClientScopes(RealmModel realm, ClientModel client, boolean defaultScopes)
Stream<ClientScopeModel>
ClientScopeStorageManager. getClientScopesStream(RealmModel realm)
Methods in org.keycloak.storage with parameters of type ClientScopeModel Modifier and Type Method Description void
UserStorageManager. preRemove(ClientScopeModel clientScope)
void
ClientStorageManager. removeClientScope(RealmModel realm, ClientModel client, ClientScopeModel clientScope)
Method parameters in org.keycloak.storage with type arguments of type ClientScopeModel Modifier and Type Method Description void
ClientStorageManager. addClientScopes(RealmModel realm, ClientModel client, Set<ClientScopeModel> clientScopes, boolean defaultScope)
-
Uses of ClientScopeModel in org.keycloak.storage.client
Classes in org.keycloak.storage.client that implement ClientScopeModel Modifier and Type Class Description class
AbstractClientStorageAdapter
Helper base class for ClientModel implementations for ClientStorageProvider implementations.class
AbstractReadOnlyClientScopeAdapter
class
AbstractReadOnlyClientStorageAdapter
class
UnsupportedOperationsClientStorageAdapter
Base helper class.Methods in org.keycloak.storage.client that return types with arguments of type ClientScopeModel Modifier and Type Method Description Map<String,ClientScopeModel>
ClientLookupProvider. getClientScopes(RealmModel realm, ClientModel client, boolean defaultScopes)
Return all default scopes (ifdefaultScope
istrue
) or all optional scopes (ifdefaultScope
isfalse
) linked with the clientMethods in org.keycloak.storage.client with parameters of type ClientScopeModel Modifier and Type Method Description void
AbstractReadOnlyClientStorageAdapter. addClientScope(ClientScopeModel clientScope, boolean defaultScope)
void
AbstractReadOnlyClientStorageAdapter. removeClientScope(ClientScopeModel clientScope)
Method parameters in org.keycloak.storage.client with type arguments of type ClientScopeModel Modifier and Type Method Description void
AbstractReadOnlyClientStorageAdapter. addClientScopes(Set<ClientScopeModel> clientScopes, boolean defaultScope)
-
Uses of ClientScopeModel in org.keycloak.storage.clientscope
Methods in org.keycloak.storage.clientscope that return ClientScopeModel Modifier and Type Method Description ClientScopeModel
ClientScopeLookupProvider. getClientScopeById(RealmModel realm, String id)
Exact search for a client scope by its internal ID.. -
Uses of ClientScopeModel in org.keycloak.storage.federated
Methods in org.keycloak.storage.federated with parameters of type ClientScopeModel Modifier and Type Method Description void
UserFederatedStorageProvider. preRemove(ClientScopeModel clientScope)
-
Uses of ClientScopeModel in org.keycloak.storage.jpa
Methods in org.keycloak.storage.jpa with parameters of type ClientScopeModel Modifier and Type Method Description void
JpaUserFederatedStorageProvider. preRemove(ClientScopeModel clientScope)
-
Uses of ClientScopeModel in org.keycloak.storage.openshift
Classes in org.keycloak.storage.openshift that implement ClientScopeModel Modifier and Type Class Description class
OpenshiftSAClientAdapter
Methods in org.keycloak.storage.openshift that return ClientScopeModel Modifier and Type Method Description ClientScopeModel
OpenshiftSAClientAdapter. getDynamicClientScope(String scope)
Methods in org.keycloak.storage.openshift that return types with arguments of type ClientScopeModel Modifier and Type Method Description Map<String,ClientScopeModel>
OpenshiftClientStorageProvider. getClientScopes(RealmModel realm, ClientModel client, boolean defaultScopes)
Map<String,ClientScopeModel>
OpenshiftSAClientAdapter. getClientScopes(boolean defaultScope)
-