Uses of Interface
org.keycloak.models.ClientScopeModel
- 
- 
Uses of ClientScopeModel in org.keycloak.migrationMethods in org.keycloak.migration that return ClientScopeModel Modifier and Type Method Description ClientScopeModelMigrationProvider. addOIDCMicroprofileJWTClientScope(RealmModel realm)Adds themicroprofile-jwtoptional client scope to the realm and returns the created scope.ClientScopeModelMigrationProvider. addOIDCRolesClientScope(RealmModel realm)Add 'roles' client scope or return it if already existsClientScopeModelMigrationProvider. addOIDCWebOriginsClientScope(RealmModel realm)Add 'web-origins' client scope or return it if already exists
- 
Uses of ClientScopeModel in org.keycloak.modelsSubinterfaces of ClientScopeModel in org.keycloak.models Modifier and Type Interface Description interfaceClientModelFields in org.keycloak.models with type parameters of type ClientScopeModel Modifier and Type Field Description static SearchableModelField<ClientScopeModel>ClientScopeModel.SearchableFields. IDstatic SearchableModelField<ClientScopeModel>ClientScopeModel.SearchableFields. NAMEstatic SearchableModelField<ClientScopeModel>ClientScopeModel.SearchableFields. REALM_IDMethods in org.keycloak.models that return ClientScopeModel Modifier and Type Method Description default ClientScopeModelClientScopeProvider. addClientScope(RealmModel realm, String name)Creates new client scope with givennameto the given realm.ClientScopeModelClientScopeProvider. addClientScope(RealmModel realm, String id, String name)Creates new client scope with given internal ID andnameto the given realm.ClientScopeModelRealmModel. addClientScope(String name)Creates new client scope with the given name.ClientScopeModelRealmModel. addClientScope(String id, String name)Creates new client scope with the given internal ID and name.ClientScopeModelClientScopeModel.ClientScopeRemovedEvent. getClientScope()ClientScopeModelRealmModel. getClientScopeById(String id)default ClientScopeModelRealmProvider. getClientScopeById(String id, RealmModel realm)Deprecated.Use the corresponding method fromClientScopeProvider.ClientScopeModelRealmProvider. getClientScopeById(RealmModel realm, String id)Deprecated.Use the corresponding method fromClientScopeProvider.default ClientScopeModelClientModel. getDynamicClientScope(String scope)Returns aClientScopeModelassociated 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 voidClientModel. addClientScope(ClientScopeModel clientScope, boolean defaultScope)Add clientScope with this client.voidRealmModel. addDefaultClientScope(ClientScopeModel clientScope, boolean defaultScope)Adds given client scope among default/optional client scopes of this realm.voidUserConsentModel. addGrantedClientScope(ClientScopeModel clientScope)booleanUserConsentModel. isClientScopeGranted(ClientScopeModel clientScope)voidUserProvider. preRemove(ClientScopeModel clientScope)Called when a client scope is removed.voidClientModel. removeClientScope(ClientScopeModel clientScope)voidClientProvider. removeClientScope(RealmModel realm, ClientModel client, ClientScopeModel clientScope)Unassign clientScope from the client.voidRealmModel. 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 voidClientModel. addClientScopes(Set<ClientScopeModel> clientScopes, boolean defaultScope)Add clientScopes with this client.voidClientProvider. addClientScopes(RealmModel realm, ClientModel client, Set<ClientScopeModel> clientScopes, boolean defaultScope)Assign clientScopes to the client.
- 
Uses of ClientScopeModel in org.keycloak.models.cache.infinispanClasses in org.keycloak.models.cache.infinispan that implement ClientScopeModel Modifier and Type Class Description classClientAdapterclassClientScopeAdapterFields in org.keycloak.models.cache.infinispan declared as ClientScopeModel Modifier and Type Field Description protected ClientScopeModelClientScopeAdapter. updatedMethods in org.keycloak.models.cache.infinispan that return ClientScopeModel Modifier and Type Method Description ClientScopeModelRealmAdapter. addClientScope(String name)ClientScopeModelRealmAdapter. addClientScope(String id, String name)ClientScopeModelRealmCacheSession. addClientScope(RealmModel realm, String name)ClientScopeModelRealmCacheSession. addClientScope(RealmModel realm, String id, String name)ClientScopeModelRealmAdapter. getClientScopeById(String id)ClientScopeModelRealmCacheSession. 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 voidClientAdapter. addClientScope(ClientScopeModel clientScope, boolean defaultScope)voidRealmAdapter. addDefaultClientScope(ClientScopeModel clientScope, boolean defaultScope)voidUserCacheSession. preRemove(ClientScopeModel clientScope)voidClientAdapter. removeClientScope(ClientScopeModel clientScope)voidRealmCacheSession. removeClientScope(RealmModel realm, ClientModel client, ClientScopeModel clientScope)voidRealmAdapter. removeDefaultClientScope(ClientScopeModel clientScope)Method parameters in org.keycloak.models.cache.infinispan with type arguments of type ClientScopeModel Modifier and Type Method Description voidClientAdapter. addClientScopes(Set<ClientScopeModel> clientScopes, boolean defaultScope)voidRealmCacheSession. addClientScopes(RealmModel realm, ClientModel client, Set<ClientScopeModel> clientScopes, boolean defaultScope)
- 
Uses of ClientScopeModel in org.keycloak.models.cache.infinispan.entitiesConstructors 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.delegateClasses in org.keycloak.models.delegate that implement ClientScopeModel Modifier and Type Class Description classClientModelLazyDelegatestatic classClientModelLazyDelegate.WithIdMethods in org.keycloak.models.delegate that return ClientScopeModel Modifier and Type Method Description ClientScopeModelClientModelLazyDelegate. 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 voidClientModelLazyDelegate. addClientScope(ClientScopeModel clientScope, boolean defaultScope)voidClientModelLazyDelegate. removeClientScope(ClientScopeModel clientScope)Method parameters in org.keycloak.models.delegate with type arguments of type ClientScopeModel Modifier and Type Method Description voidClientModelLazyDelegate. addClientScopes(Set<ClientScopeModel> clientScopes, boolean defaultScope)
- 
Uses of ClientScopeModel in org.keycloak.models.jpaClasses in org.keycloak.models.jpa that implement ClientScopeModel Modifier and Type Class Description classClientAdapterclassClientScopeAdapterMethods in org.keycloak.models.jpa that return ClientScopeModel Modifier and Type Method Description ClientScopeModelJpaRealmProvider. addClientScope(RealmModel realm, String id, String name)ClientScopeModelRealmAdapter. addClientScope(String name)ClientScopeModelRealmAdapter. addClientScope(String id, String name)ClientScopeModelJpaRealmProvider. getClientScopeById(RealmModel realm, String id)ClientScopeModelRealmAdapter. 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 voidClientAdapter. addClientScope(ClientScopeModel clientScope, boolean defaultScope)voidRealmAdapter. addDefaultClientScope(ClientScopeModel clientScope, boolean defaultScope)voidJpaUserProvider. preRemove(ClientScopeModel clientScope)voidClientAdapter. removeClientScope(ClientScopeModel clientScope)voidJpaRealmProvider. removeClientScope(RealmModel realm, ClientModel client, ClientScopeModel clientScope)voidRealmAdapter. removeDefaultClientScope(ClientScopeModel clientScope)static ClientScopeEntityClientScopeAdapter. 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 voidClientAdapter. addClientScopes(Set<ClientScopeModel> clientScopes, boolean defaultScope)voidJpaRealmProvider. addClientScopes(RealmModel realm, ClientModel client, Set<ClientScopeModel> clientScopes, boolean defaultScope)
- 
Uses of ClientScopeModel in org.keycloak.models.map.clientClasses in org.keycloak.models.map.client that implement ClientScopeModel Modifier and Type Class Description classAbstractClientModel<E extends AbstractEntity>classMapClientAdapterMethods 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 voidAbstractClientModel. addClientScope(ClientScopeModel clientScope, boolean defaultScope)voidAbstractClientModel. removeClientScope(ClientScopeModel clientScope)voidMapClientProvider. 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 voidAbstractClientModel. addClientScopes(Set<ClientScopeModel> clientScopes, boolean defaultScope)voidMapClientProvider. addClientScopes(RealmModel realm, ClientModel client, Set<ClientScopeModel> clientScopes, boolean defaultScope)
- 
Uses of ClientScopeModel in org.keycloak.models.map.clientscopeClasses in org.keycloak.models.map.clientscope that implement ClientScopeModel Modifier and Type Class Description classAbstractClientScopeModel<E extends AbstractEntity>classMapClientScopeAdapterMethods in org.keycloak.models.map.clientscope that return ClientScopeModel Modifier and Type Method Description ClientScopeModelMapClientScopeProvider. addClientScope(RealmModel realm, String id, String name)ClientScopeModelMapClientScopeProvider. 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.realmMethods in org.keycloak.models.map.realm that return ClientScopeModel Modifier and Type Method Description ClientScopeModelMapRealmAdapter. addClientScope(String name)ClientScopeModelMapRealmAdapter. addClientScope(String id, String name)ClientScopeModelMapRealmProvider. addClientScope(RealmModel realm, String id, String name)Deprecated.ClientScopeModelMapRealmAdapter. getClientScopeById(String id)ClientScopeModelMapRealmProvider. 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 voidMapRealmAdapter. addDefaultClientScope(ClientScopeModel clientScope, boolean defaultScope)voidMapRealmProvider. removeClientScope(RealmModel realm, ClientModel client, ClientScopeModel clientScope)Deprecated.voidMapRealmAdapter. removeDefaultClientScope(ClientScopeModel clientScope)Method parameters in org.keycloak.models.map.realm with type arguments of type ClientScopeModel Modifier and Type Method Description voidMapRealmProvider. addClientScopes(RealmModel realm, ClientModel client, Set<ClientScopeModel> clientScopes, boolean defaultScope)Deprecated.
- 
Uses of ClientScopeModel in org.keycloak.models.map.storage.chmFields 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_PREDICATESstatic Map<SearchableModelField<ClientScopeModel>,MapModelCriteriaBuilder.UpdatePredicatesFunc<Object,MapClientScopeEntity,ClientScopeModel>>MapFieldPredicates. CLIENT_SCOPE_PREDICATES
- 
Uses of ClientScopeModel in org.keycloak.models.map.storage.jpa.clientScopeMethod parameters in org.keycloak.models.map.storage.jpa.clientScope with type arguments of type ClientScopeModel Modifier and Type Method Description JpaClientScopeModelCriteriaBuilderJpaClientScopeModelCriteriaBuilder. compare(SearchableModelField<? super ClientScopeModel> modelField, ModelCriteriaBuilder.Operator op, Object... value)
- 
Uses of ClientScopeModel in org.keycloak.models.map.userMethods in org.keycloak.models.map.user with parameters of type ClientScopeModel Modifier and Type Method Description voidMapUserProvider. preRemove(ClientScopeModel clientScope)
- 
Uses of ClientScopeModel in org.keycloak.models.utilsMethods in org.keycloak.models.utils that return ClientScopeModel Modifier and Type Method Description static ClientScopeModelRepresentationToModel. createClientScope(KeycloakSession session, RealmModel realm, ClientScopeRepresentation resourceRep)static ClientScopeModelKeycloakModelUtils. findClientScopeById(RealmModel realm, ClientModel client, String clientScopeId)Lookup clientScope OR client by id.static ClientScopeModelKeycloakModelUtils. getClientScopeByName(RealmModel realm, String clientScopeName)Methods in org.keycloak.models.utils with parameters of type ClientScopeModel Modifier and Type Method Description static ClientScopeRepresentationModelToRepresentation. toRepresentation(ClientScopeModel clientScopeModel)static voidRepresentationToModel. updateClientScope(ClientScopeRepresentation rep, ClientScopeModel resource)
- 
Uses of ClientScopeModel in org.keycloak.protocol.oidcClasses in org.keycloak.protocol.oidc that implement ClientScopeModel Modifier and Type Class Description classOIDCClientSecretConfigWrapper.ReadOnlyRotatedSecretClientModelRepresentation 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 ClientScopeModelOIDCLoginProtocolFactory. addMicroprofileJWTClientScope(RealmModel newRealm)Adds themicroprofile-jwtoptional client scope to the specified realm.ClientScopeModelOIDCLoginProtocolFactory. addRolesClientScope(RealmModel newRealm)ClientScopeModelOIDCLoginProtocolFactory. 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 booleanTokenManager. verifyConsentStillAvailable(KeycloakSession session, UserModel user, ClientModel client, Stream<ClientScopeModel> requestedClientScopes)
- 
Uses of ClientScopeModel in org.keycloak.protocol.oidc.rar.modelMethods in org.keycloak.protocol.oidc.rar.model that return ClientScopeModel Modifier and Type Method Description ClientScopeModelIntermediaryScopeRepresentation. 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.rarMethods in org.keycloak.rar that return ClientScopeModel Modifier and Type Method Description ClientScopeModelAuthorizationDetails. getClientScope()Methods in org.keycloak.rar with parameters of type ClientScopeModel Modifier and Type Method Description voidAuthorizationDetails. 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.migrationMethods in org.keycloak.services.migration that return ClientScopeModel Modifier and Type Method Description ClientScopeModelDefaultMigrationProvider. addOIDCMicroprofileJWTClientScope(RealmModel realm)ClientScopeModelDefaultMigrationProvider. addOIDCRolesClientScope(RealmModel realm)ClientScopeModelDefaultMigrationProvider. addOIDCWebOriginsClientScope(RealmModel realm)
- 
Uses of ClientScopeModel in org.keycloak.services.resources.adminFields in org.keycloak.services.resources.admin declared as ClientScopeModel Modifier and Type Field Description protected ClientScopeModelClientScopeResource. clientScopeConstructors 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.permissionsMethods in org.keycloak.services.resources.admin.permissions with parameters of type ClientScopeModel Modifier and Type Method Description booleanClientPermissionEvaluator. canManage(ClientScopeModel clientScope)booleanClientPermissionEvaluator. canView(ClientScopeModel clientScope)voidClientPermissionEvaluator. requireManage(ClientScopeModel clientScope)voidClientPermissionEvaluator. requireView(ClientScopeModel clientScope)
- 
Uses of ClientScopeModel in org.keycloak.services.utilMethods 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 theClientScopeModelin the currentAuthorizationRequestContext
- 
Uses of ClientScopeModel in org.keycloak.storageMethods in org.keycloak.storage that return ClientScopeModel Modifier and Type Method Description ClientScopeModelClientScopeStorageManager. addClientScope(RealmModel realm, String id, String name)ClientScopeModelClientScopeStorageManager. 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 voidUserStorageManager. preRemove(ClientScopeModel clientScope)voidClientStorageManager. removeClientScope(RealmModel realm, ClientModel client, ClientScopeModel clientScope)Method parameters in org.keycloak.storage with type arguments of type ClientScopeModel Modifier and Type Method Description voidClientStorageManager. addClientScopes(RealmModel realm, ClientModel client, Set<ClientScopeModel> clientScopes, boolean defaultScope)
- 
Uses of ClientScopeModel in org.keycloak.storage.clientClasses in org.keycloak.storage.client that implement ClientScopeModel Modifier and Type Class Description classAbstractClientStorageAdapterHelper base class for ClientModel implementations for ClientStorageProvider implementations.classAbstractReadOnlyClientScopeAdapterclassAbstractReadOnlyClientStorageAdapterclassUnsupportedOperationsClientStorageAdapterBase 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 (ifdefaultScopeistrue) or all optional scopes (ifdefaultScopeisfalse) linked with the clientMethods in org.keycloak.storage.client with parameters of type ClientScopeModel Modifier and Type Method Description voidAbstractReadOnlyClientStorageAdapter. addClientScope(ClientScopeModel clientScope, boolean defaultScope)voidAbstractReadOnlyClientStorageAdapter. removeClientScope(ClientScopeModel clientScope)Method parameters in org.keycloak.storage.client with type arguments of type ClientScopeModel Modifier and Type Method Description voidAbstractReadOnlyClientStorageAdapter. addClientScopes(Set<ClientScopeModel> clientScopes, boolean defaultScope)
- 
Uses of ClientScopeModel in org.keycloak.storage.clientscopeMethods in org.keycloak.storage.clientscope that return ClientScopeModel Modifier and Type Method Description ClientScopeModelClientScopeLookupProvider. getClientScopeById(RealmModel realm, String id)Exact search for a client scope by its internal ID..
- 
Uses of ClientScopeModel in org.keycloak.storage.federatedMethods in org.keycloak.storage.federated with parameters of type ClientScopeModel Modifier and Type Method Description voidUserFederatedStorageProvider. preRemove(ClientScopeModel clientScope)
- 
Uses of ClientScopeModel in org.keycloak.storage.jpaMethods in org.keycloak.storage.jpa with parameters of type ClientScopeModel Modifier and Type Method Description voidJpaUserFederatedStorageProvider. preRemove(ClientScopeModel clientScope)
- 
Uses of ClientScopeModel in org.keycloak.storage.openshiftClasses in org.keycloak.storage.openshift that implement ClientScopeModel Modifier and Type Class Description classOpenshiftSAClientAdapterMethods in org.keycloak.storage.openshift that return ClientScopeModel Modifier and Type Method Description ClientScopeModelOpenshiftSAClientAdapter. 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)
 
-