Uses of Interface
org.keycloak.models.ClientScopeModel
-
Packages that use ClientScopeModel Package Description org.keycloak.models org.keycloak.rar org.keycloak.storage.client org.keycloak.storage.clientscope -
-
Uses of ClientScopeModel in org.keycloak.models
Subinterfaces 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.rar
Methods 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.storage.client
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 client -
Uses of ClientScopeModel in org.keycloak.storage.clientscope
Methods 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..
-