Uses of Interface
org.keycloak.models.ClientScopeModel
Packages that use ClientScopeModel
Package
Description
-
Uses of ClientScopeModel in org.keycloak.models
Subinterfaces of ClientScopeModel in org.keycloak.modelsClasses in org.keycloak.models that implement ClientScopeModelMethods in org.keycloak.models that return ClientScopeModelModifier and TypeMethodDescriptiondefault ClientScopeModelClientScopeProvider.addClientScope(RealmModel realm, String name) Creates new client scope with givennameto the given realm.ClientScopeProvider.addClientScope(RealmModel realm, String id, String name) Creates new client scope with given internal ID andnameto the given realm.RealmModel.addClientScope(String name) Creates new client scope with the given name.RealmModel.addClientScope(String id, String name) Creates new client scope with the given internal ID and name.ClientScopeModel.ClientScopeCreatedEvent.getClientScope()ClientScopeModel.ClientScopeRemovedEvent.getClientScope()RealmModel.getClientScopeById(String id) default ClientScopeModelClientModel.getDynamicClientScope(String scope) Returns aClientScopeModelassociated with this client.Methods in org.keycloak.models that return types with arguments of type ClientScopeModelModifier and TypeMethodDescriptionClientModel.getClientScopes(boolean defaultScope) Return all default scopes (if 'defaultScope' is true) or all optional scopes (if 'defaultScope' is false) linked with this clientClientScopeProvider.getClientScopesStream(RealmModel realm) Returns all the client scopes of the given realm as a stream.ClientSessionContext.getClientScopesStream()Returns client scopes as a stream.RealmModel.getClientScopesStream()Returns all client scopes of this realm as a stream.RealmModel.getDefaultClientScopesStream(boolean defaultScope) Returns default client scopes of this realm either default ones or optional ones.UserConsentModel.getGrantedClientScopes()Methods in org.keycloak.models with parameters of type ClientScopeModelModifier and TypeMethodDescriptionvoidClientModel.addClientScope(ClientScopeModel clientScope, boolean defaultScope) Add clientScope with this client.voidClientProvider.addClientScopeToAllClients(RealmModel realm, ClientScopeModel clientScope, boolean defaultClientScope) Add specified client scope to all non bearer-only clients in the realm, which have same protocol as specified client scope.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 ClientScopeModelModifier and TypeMethodDescriptionvoidClientModel.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.Constructors in org.keycloak.models with parameters of type ClientScopeModel -
Uses of ClientScopeModel in org.keycloak.rar
Methods in org.keycloak.rar that return ClientScopeModelMethods in org.keycloak.rar with parameters of type ClientScopeModelModifier and TypeMethodDescriptionvoidAuthorizationDetails.setClientScope(ClientScopeModel clientScope) Constructors in org.keycloak.rar with parameters of type ClientScopeModelModifierConstructorDescriptionAuthorizationDetails(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 ClientScopeModelModifier and TypeMethodDescriptionClientLookupProvider.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 ClientScopeModelModifier and TypeMethodDescriptionClientScopeLookupProvider.getClientScopeById(RealmModel realm, String id) Exact search for a client scope by its internal ID..