Package org.keycloak.storage
Class UserStorageManager
- java.lang.Object
-
- org.keycloak.storage.AbstractStorageManager<UserStorageProvider,UserStorageProviderModel>
-
- org.keycloak.storage.UserStorageManager
-
- All Implemented Interfaces:
OnUserCache,UserProvider,Provider,OnCreateComponent,OnUpdateComponent,UserBulkUpdateProvider,UserLookupProvider,UserQueryProvider,UserRegistrationProvider
public class UserStorageManager extends AbstractStorageManager<UserStorageProvider,UserStorageProviderModel> implements UserProvider, OnUserCache, OnCreateComponent, OnUpdateComponent
- Version:
- $Revision: 1 $
- Author:
- Bill Burke
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.keycloak.models.UserProvider
UserProvider.Streams
-
-
Field Summary
-
Fields inherited from class org.keycloak.storage.AbstractStorageManager
session
-
-
Constructor Summary
Constructors Constructor Description UserStorageManager(KeycloakSession session)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaddConsent(RealmModel realm, String userId, UserConsentModel consent)Add user consent for the user.voidaddFederatedIdentity(RealmModel realm, UserModel user, FederatedIdentityModel socialLink)Adds a federated identity link for the user within the realmUserModeladdUser(RealmModel realm, String username)UserRegistrationProvidermethods implementations start hereUserModeladdUser(RealmModel realm, String id, String username, boolean addDefaultRoles, boolean addDefaultRequiredActions)UserStorageProvidermethods implementation end hereUserProvidermethods implementations start here -> no StorageProviders involvedvoidclose()UserProvidermethods implementations end hereprotected voiddeleteInvalidUser(RealmModel realm, UserModel user)UserConsentModelgetConsentByClient(RealmModel realm, String userId, String clientInternalId)Returns UserConsentModel given by a user with the userId for the client with clientInternalIdStream<UserConsentModel>getConsentsStream(RealmModel realm, String userId)Obtains the consents associated with the user identified by the specifieduserId.Stream<FederatedIdentityModel>getFederatedIdentitiesStream(RealmModel realm, UserModel user)Obtains the federated identities of the specified user.FederatedIdentityModelgetFederatedIdentity(RealmModel realm, UserModel user, String socialProvider)Returns details of the association between the user and the socialProvider.Stream<UserModel>getGroupMembersStream(RealmModel realm, GroupModel group, Integer firstResult, Integer maxResults)UserLookupProvidermethods implementations end hereUserQueryProvidermethods implementation start hereintgetNotBeforeOfUser(RealmModel realm, UserModel user)Gets the notBefore value for the given userStream<UserModel>getRoleMembersStream(RealmModel realm, RoleModel role, Integer firstResult, Integer maxResults)Searches for users that have the specified role.UserModelgetServiceAccount(ClientModel client)Return a UserModel representing service account of the clientCredentialValidationOutputgetUserByCredential(RealmModel realm, CredentialInput input)UserModelgetUserByEmail(RealmModel realm, String email)Returns a user with the given email belonging to the realmUserModelgetUserByFederatedIdentity(RealmModel realm, FederatedIdentityModel socialLink)Returns a userModel that corresponds to the given socialLink.UserModelgetUserById(RealmModel realm, String id)UserRegistrationProvidermethods implementations end hereUserLookupProvidermethods implementations start hereUserModelgetUserByUsername(RealmModel realm, String username)Exact search for a user by its username.intgetUsersCount(RealmModel realm)Returns the number of users, without consider any service account.intgetUsersCount(RealmModel realm, boolean includeServiceAccount)Returns the number of users.intgetUsersCount(RealmModel realm, String search)Returns the number of users that would be returned by a call tosearchForUserStreamintgetUsersCount(RealmModel realm, String search, Set<String> groupIds)Returns the number of users that would be returned by a call tosearchForUserStreamand are members of at least one of the groups given by thegroupIdsset.intgetUsersCount(RealmModel realm, Map<String,String> params)Returns the number of users that match the given filter parameters.intgetUsersCount(RealmModel realm, Map<String,String> params, Set<String> groupIds)Returns the number of users that match the given filter parameters and is in at least one of the given groups.intgetUsersCount(RealmModel realm, Set<String> groupIds)Returns the number of users that are in at least one of the groups given.voidgrantToAllUsers(RealmModel realm, RoleModel role)UserQueryProvidermethods implementation end hereUserBulkUpdateProvidermethods implementation start hereprotected Stream<UserModel>importValidation(RealmModel realm, Stream<UserModel> users)protected UserModelimportValidation(RealmModel realm, UserModel user)Allows a UserStorageProvider to proxy and/or synchronize an imported user.protected UserProviderlocalStorage()voidonCache(RealmModel realm, CachedUserModel user, UserModel delegate)voidonCreate(KeycloakSession session, RealmModel realm, ComponentModel model)voidonUpdate(KeycloakSession session, RealmModel realm, ComponentModel oldModel, ComponentModel newModel)voidpreRemove(ClientScopeModel clientScope)Called when a client scope is removed.voidpreRemove(ProtocolMapperModel protocolMapper)Called when a protocolMapper is removedvoidpreRemove(RealmModel realm)UserBulkUpdateProvidermethods implementation end hereUserStorageProvidermethods implementations start here -> no StorageProviders involvedvoidpreRemove(RealmModel realm, ComponentModel component)Called when a component is removed.voidpreRemove(RealmModel realm, ClientModel client)Called when a client is removed.voidpreRemove(RealmModel realm, GroupModel group)Called when a group is removed.voidpreRemove(RealmModel realm, IdentityProviderModel provider)Called when an identity provider is removed.voidpreRemove(RealmModel realm, RoleModel role)Called when a role is removed.protected Stream<UserModel>query(org.keycloak.storage.UserStorageManager.PaginatedQuery pagedQuery, RealmModel realm, Integer firstResult, Integer maxResults)protected Stream<UserModel>query(org.keycloak.storage.UserStorageManager.PaginatedQuery pagedQuery, org.keycloak.storage.UserStorageManager.CountQuery countQuery, RealmModel realm, Integer firstResult, Integer maxResults)booleanremoveFederatedIdentity(RealmModel realm, UserModel user, String socialProvider)Removes federation link between the user and the identity provider given by its idvoidremoveImportedUsers(RealmModel realm, String storageProviderId)Removes any imported users from a specific User Storage Provider.booleanremoveUser(RealmModel realm, UserModel user)Called if user originated from this provider.booleanrevokeConsentForClient(RealmModel realm, String userId, String clientInternalId)Remove a user consent given by the user id and client idStream<UserModel>searchForUserByUserAttributeStream(RealmModel realm, String attrName, String attrValue)Searches for users that have a specific attribute with a specific value.Stream<UserModel>searchForUserStream(RealmModel realm, String search, Integer firstResult, Integer maxResults)Searches for users whose username, email, first name or last name contain any of the strings insearchseparated by whitespace.Stream<UserModel>searchForUserStream(RealmModel realm, Map<String,String> attributes, Integer firstResult, Integer maxResults)Searches for user by parameter.voidsetNotBeforeForUser(RealmModel realm, UserModel user, int notBefore)Sets the notBefore value for the given uservoidunlinkUsers(RealmModel realm, String storageProviderId)Set federation link tonullto imported users of a specific User Storage ProvidervoidupdateConsent(RealmModel realm, String userId, UserConsentModel consent)Update client scopes in the stored user consentvoidupdateFederatedIdentity(RealmModel realm, UserModel federatedUser, FederatedIdentityModel federatedIdentityModel)Update details of association between the federatedUser and the idp given by the federatedIdentityModel-
Methods inherited from class org.keycloak.storage.AbstractStorageManager
consumeEnabledStorageProvidersWithTimeout, flatMapEnabledStorageProvidersWithTimeout, getEnabledStorageProviders, getStorageProviderFactory, getStorageProviderInstance, getStorageProviderInstance, getStorageProviderInstance, getStorageProviderInstance, getStorageProviderModel, getStorageProviderModels, getStorageProviderTimeout, mapEnabledStorageProvidersWithTimeout
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.keycloak.models.UserProvider
getUsersStream, getUsersStream
-
Methods inherited from interface org.keycloak.storage.user.UserQueryProvider
getGroupMembersStream, getRoleMembersStream, getUsersStream, getUsersStream, searchForUserStream, searchForUserStream
-
-
-
-
Constructor Detail
-
UserStorageManager
public UserStorageManager(KeycloakSession session)
-
-
Method Detail
-
localStorage
protected UserProvider localStorage()
-
importValidation
protected UserModel importValidation(RealmModel realm, UserModel user)
Allows a UserStorageProvider to proxy and/or synchronize an imported user.- Parameters:
realm-user-- Returns:
-
getUserByCredential
public CredentialValidationOutput getUserByCredential(RealmModel realm, CredentialInput input)
- Specified by:
getUserByCredentialin interfaceUserLookupProvider
-
deleteInvalidUser
protected void deleteInvalidUser(RealmModel realm, UserModel user)
-
importValidation
protected Stream<UserModel> importValidation(RealmModel realm, Stream<UserModel> users)
-
query
protected Stream<UserModel> query(org.keycloak.storage.UserStorageManager.PaginatedQuery pagedQuery, RealmModel realm, Integer firstResult, Integer maxResults)
-
query
protected Stream<UserModel> query(org.keycloak.storage.UserStorageManager.PaginatedQuery pagedQuery, org.keycloak.storage.UserStorageManager.CountQuery countQuery, RealmModel realm, Integer firstResult, Integer maxResults)
-
addUser
public UserModel addUser(RealmModel realm, String username)
UserRegistrationProvidermethods implementations start here- Specified by:
addUserin interfaceUserRegistrationProvider- Parameters:
realm- a reference to the realmusername- a username the created user will be assigned- Returns:
- a model of created user
-
removeUser
public boolean removeUser(RealmModel realm, UserModel user)
Description copied from interface:UserRegistrationProviderCalled if user originated from this provider. If a local user is linked to this provider, this method will be called before local storage's removeUser() method is invoked. If you are using an import strategy, and this is a local user linked to this provider, this method will be called before local storage's removeUser() method is invoked. Also, you DO NOT need to remove the imported user. The runtime will handle this for you.- Specified by:
removeUserin interfaceUserRegistrationProvider- Parameters:
realm- a reference to the realmuser- a reference to the user that is removed- Returns:
- true if the user was removed, false otherwise
-
getUserById
public UserModel getUserById(RealmModel realm, String id)
UserRegistrationProvidermethods implementations end hereUserLookupProvidermethods implementations start here- Specified by:
getUserByIdin interfaceUserLookupProvider- Parameters:
realm- the realm modelid- id of the user- Returns:
- found user model, or
nullif no such user exists
-
getUserByUsername
public UserModel getUserByUsername(RealmModel realm, String username)
Description copied from interface:UserLookupProviderExact search for a user by its username. Returns a user with the given username belonging to the realm- Specified by:
getUserByUsernamein interfaceUserLookupProvider- Parameters:
realm- the realm modelusername- (case-sensitivity is controlled by storage)- Returns:
- found user model, or
nullif no such user exists
-
getUserByEmail
public UserModel getUserByEmail(RealmModel realm, String email)
Description copied from interface:UserLookupProviderReturns a user with the given email belonging to the realm- Specified by:
getUserByEmailin interfaceUserLookupProvider- Parameters:
realm- the realm modelemail- email address- Returns:
- found user model, or
nullif no such user exists
-
getGroupMembersStream
public Stream<UserModel> getGroupMembersStream(RealmModel realm, GroupModel group, Integer firstResult, Integer maxResults)
UserLookupProvidermethods implementations end hereUserQueryProvidermethods implementation start here- Specified by:
getGroupMembersStreamin interfaceUserQueryProvider- Parameters:
realm- a reference to the realm.group- a reference to the group.firstResult- first result to return. Ignored if negative, zero, ornull.maxResults- maximum number of results to return. Ignored if negative ornull.- Returns:
- a non-null
Streamof users that belong to the group.
-
getRoleMembersStream
public Stream<UserModel> getRoleMembersStream(RealmModel realm, RoleModel role, Integer firstResult, Integer maxResults)
Description copied from interface:UserQueryProviderSearches for users that have the specified role.- Specified by:
getRoleMembersStreamin interfaceUserQueryProvider- Parameters:
realm- a reference to the realm.role- a reference to the role.firstResult- first result to return. Ignored if negative ornull.maxResults- maximum number of results to return. Ignored if negative ornull.- Returns:
- a non-null
Streamof users that have the specified role.
-
getUsersCount
public int getUsersCount(RealmModel realm, boolean includeServiceAccount)
Description copied from interface:UserQueryProviderReturns the number of users.- Specified by:
getUsersCountin interfaceUserQueryProvider- Parameters:
realm- the realmincludeServiceAccount- if true, the number of users will also include service accounts. Otherwise, only the number of users.- Returns:
- the number of users
-
getUsersCount
public int getUsersCount(RealmModel realm)
Description copied from interface:UserQueryProviderReturns the number of users, without consider any service account.- Specified by:
getUsersCountin interfaceUserQueryProvider- Parameters:
realm- the realm- Returns:
- the number of users
-
getUsersCount
public int getUsersCount(RealmModel realm, Set<String> groupIds)
Description copied from interface:UserQueryProviderReturns the number of users that are in at least one of the groups given.- Specified by:
getUsersCountin interfaceUserQueryProvider- Parameters:
realm- the realmgroupIds- set of groups IDs, the returned user needs to belong to at least one of them- Returns:
- the number of users that are in at least one of the groups
-
getUsersCount
public int getUsersCount(RealmModel realm, String search)
Description copied from interface:UserQueryProviderReturns the number of users that would be returned by a call tosearchForUserStream- Specified by:
getUsersCountin interfaceUserQueryProvider- Parameters:
realm- the realmsearch- case insensitive list of strings separated by whitespaces.- Returns:
- number of users that match the search
-
getUsersCount
public int getUsersCount(RealmModel realm, String search, Set<String> groupIds)
Description copied from interface:UserQueryProviderReturns the number of users that would be returned by a call tosearchForUserStreamand are members of at least one of the groups given by thegroupIdsset.- Specified by:
getUsersCountin interfaceUserQueryProvider- Parameters:
realm- the realmsearch- case insensitive list of strings separated by whitespaces.groupIds- set of groups IDs, the returned user needs to belong to at least one of them- Returns:
- number of users that match the search and given groups
-
getUsersCount
public int getUsersCount(RealmModel realm, Map<String,String> params)
Description copied from interface:UserQueryProviderReturns the number of users that match the given filter parameters.- Specified by:
getUsersCountin interfaceUserQueryProvider- Parameters:
realm- the realmparams- filter parameters- Returns:
- number of users that match the given filters
-
getUsersCount
public int getUsersCount(RealmModel realm, Map<String,String> params, Set<String> groupIds)
Description copied from interface:UserQueryProviderReturns the number of users that match the given filter parameters and is in at least one of the given groups.- Specified by:
getUsersCountin interfaceUserQueryProvider- Parameters:
realm- the realmparams- filter parametersgroupIds- set if groups to check for- Returns:
- number of users that match the given filters and groups
-
searchForUserStream
public Stream<UserModel> searchForUserStream(RealmModel realm, String search, Integer firstResult, Integer maxResults)
Description copied from interface:UserQueryProviderSearches for users whose username, email, first name or last name contain any of the strings insearchseparated by whitespace. If possible, implementations should treat the parameter values as partial match patterns (i.e. in RDMBS terms use LIKE). This method is used by the admin console search box- Specified by:
searchForUserStreamin interfaceUserQueryProvider- Parameters:
realm- a reference to the realm.search- case insensitive list of string separated by whitespaces.firstResult- first result to return. Ignored if negative, zero, ornull.maxResults- maximum number of results to return. Ignored if negative ornull.- Returns:
- a non-null
Streamof users that match the search criteria.
-
searchForUserStream
public Stream<UserModel> searchForUserStream(RealmModel realm, Map<String,String> attributes, Integer firstResult, Integer maxResults)
Description copied from interface:UserQueryProviderSearches for user by parameter. If possible, implementations should treat the parameter values as partial match patterns (i.e. in RDMBS terms use LIKE). Valid parameters are:UserModel.FIRST_NAME- first name (case insensitive string)UserModel.LAST_NAME- last name (case insensitive string)UserModel.EMAIL- email (case insensitive string)UserModel.USERNAME- username (case insensitive string)UserModel.EMAIL_VERIFIED- search only for users with verified/non-verified email (true/false)UserModel.ENABLED- search only for enabled/disabled users (true/false)UserModel.IDP_ALIAS- search only for users that have a federated identity from idp with the given alias configured (case sensitive string)UserModel.IDP_USER_ID- search for users with federated identity with the given userId (case sensitive string)
- Specified by:
searchForUserStreamin interfaceUserQueryProvider- Parameters:
realm- a reference to the realm.attributes- a map containing the search parameters.firstResult- first result to return. Ignored if negative, zero, ornull.maxResults- maximum number of results to return. Ignored if negative ornull.- Returns:
- a non-null
Streamof users that match the search criteria.
-
searchForUserByUserAttributeStream
public Stream<UserModel> searchForUserByUserAttributeStream(RealmModel realm, String attrName, String attrValue)
Description copied from interface:UserQueryProviderSearches for users that have a specific attribute with a specific value.- Specified by:
searchForUserByUserAttributeStreamin interfaceUserQueryProvider- Parameters:
realm- a reference to the realm.attrName- the attribute name.attrValue- the attribute value.- Returns:
- a non-null
Streamof users that match the search criteria.
-
grantToAllUsers
public void grantToAllUsers(RealmModel realm, RoleModel role)
UserQueryProvidermethods implementation end hereUserBulkUpdateProvidermethods implementation start here- Specified by:
grantToAllUsersin interfaceUserBulkUpdateProvider- Parameters:
realm- Realmrole- Role to be granted
-
preRemove
public void preRemove(RealmModel realm)
UserBulkUpdateProvidermethods implementation end hereUserStorageProvidermethods implementations start here -> no StorageProviders involved- Specified by:
preRemovein interfaceUserProvider- Parameters:
realm- a reference to the realm
-
preRemove
public void preRemove(RealmModel realm, GroupModel group)
Description copied from interface:UserProviderCalled when a group is removed. Should remove the group membership for each user.- Specified by:
preRemovein interfaceUserProvider- Parameters:
realm- a reference to the realmgroup- the group model
-
preRemove
public void preRemove(RealmModel realm, RoleModel role)
Description copied from interface:UserProviderCalled when a role is removed. Should remove the role membership for each user.- Specified by:
preRemovein interfaceUserProvider- Parameters:
realm- a reference to the realmrole- the role model
-
addUser
public UserModel addUser(RealmModel realm, String id, String username, boolean addDefaultRoles, boolean addDefaultRequiredActions)
UserStorageProvidermethods implementation end hereUserProvidermethods implementations start here -> no StorageProviders involved- Specified by:
addUserin interfaceUserProvider- Parameters:
realm- the realm that user will be created inid- id of the new user. Should be generated to a random value ifnull.username- usernameaddDefaultRoles- iftrue, the user should join all realm default rolesaddDefaultRequiredActions- iftrue, all default required actions are added to the created user- Returns:
- model of created user
-
addFederatedIdentity
public void addFederatedIdentity(RealmModel realm, UserModel user, FederatedIdentityModel socialLink)
Description copied from interface:UserProviderAdds a federated identity link for the user within the realm- Specified by:
addFederatedIdentityin interfaceUserProvider- Parameters:
realm- a reference to the realmuser- the user modelsocialLink- the federated identity model containing all details of the association between the user and the identity provider
-
updateFederatedIdentity
public void updateFederatedIdentity(RealmModel realm, UserModel federatedUser, FederatedIdentityModel federatedIdentityModel)
Description copied from interface:UserProviderUpdate details of association between the federatedUser and the idp given by the federatedIdentityModel- Specified by:
updateFederatedIdentityin interfaceUserProvider- Parameters:
realm- a reference to the realmfederatedUser- the user modelfederatedIdentityModel- the federated identity model containing all details of the association between the user and the identity provider
-
removeFederatedIdentity
public boolean removeFederatedIdentity(RealmModel realm, UserModel user, String socialProvider)
Description copied from interface:UserProviderRemoves federation link between the user and the identity provider given by its id- Specified by:
removeFederatedIdentityin interfaceUserProvider- Parameters:
realm- a reference to the realmuser- the user modelsocialProvider- alias of the identity provider, seeIdentityProviderModel.getAlias()- Returns:
trueif the association was removed,falseotherwise TODO: Make this method return Boolean so that store can return "I don't know" answer, this can be used for example in async stores
-
preRemove
public void preRemove(RealmModel realm, IdentityProviderModel provider)
Description copied from interface:UserProviderCalled when an identity provider is removed. Should remove all federated identities assigned to users from the provider.- Specified by:
preRemovein interfaceUserProvider- Parameters:
realm- a reference to the realmprovider- provider model
-
addConsent
public void addConsent(RealmModel realm, String userId, UserConsentModel consent)
Description copied from interface:UserProviderAdd user consent for the user.- Specified by:
addConsentin interfaceUserProvider- Parameters:
realm- a reference to the realmuserId- id of the userconsent- all details corresponding to the granted consent
-
getConsentByClient
public UserConsentModel getConsentByClient(RealmModel realm, String userId, String clientInternalId)
Description copied from interface:UserProviderReturns UserConsentModel given by a user with the userId for the client with clientInternalId- Specified by:
getConsentByClientin interfaceUserProvider- Parameters:
realm- a reference to the realmuserId- id of the userclientInternalId- id of the client- Returns:
- consent given by the user to the client or
nullif no consent or user exists
-
getConsentsStream
public Stream<UserConsentModel> getConsentsStream(RealmModel realm, String userId)
Description copied from interface:UserProviderObtains the consents associated with the user identified by the specifieduserId.- Specified by:
getConsentsStreamin interfaceUserProvider- Parameters:
realm- a reference to the realm.userId- the user identifier.- Returns:
- a non-null
Streamof consents associated with the user.
-
updateConsent
public void updateConsent(RealmModel realm, String userId, UserConsentModel consent)
Description copied from interface:UserProviderUpdate client scopes in the stored user consent- Specified by:
updateConsentin interfaceUserProvider- Parameters:
realm- a reference to the realmuserId- id of the userconsent- new details of the user consent
-
revokeConsentForClient
public boolean revokeConsentForClient(RealmModel realm, String userId, String clientInternalId)
Description copied from interface:UserProviderRemove a user consent given by the user id and client id- Specified by:
revokeConsentForClientin interfaceUserProvider- Parameters:
realm- a reference to the realmuserId- id of the userclientInternalId- id of the client- Returns:
trueif the consent was removed,falseotherwise TODO: Make this method return Boolean so that store can return "I don't know" answer, this can be used for example in async stores
-
setNotBeforeForUser
public void setNotBeforeForUser(RealmModel realm, UserModel user, int notBefore)
Description copied from interface:UserProviderSets the notBefore value for the given user- Specified by:
setNotBeforeForUserin interfaceUserProvider- Parameters:
realm- a reference to the realmuser- the user modelnotBefore- new value for notBefore
-
getNotBeforeOfUser
public int getNotBeforeOfUser(RealmModel realm, UserModel user)
Description copied from interface:UserProviderGets the notBefore value for the given user- Specified by:
getNotBeforeOfUserin interfaceUserProvider- Parameters:
realm- a reference to the realmuser- the user model- Returns:
- the value of notBefore
-
getUserByFederatedIdentity
public UserModel getUserByFederatedIdentity(RealmModel realm, FederatedIdentityModel socialLink)
Description copied from interface:UserProviderReturns a userModel that corresponds to the given socialLink.- Specified by:
getUserByFederatedIdentityin interfaceUserProvider- Parameters:
realm- a reference to the realmsocialLink- the socialLink- Returns:
- the user corresponding to socialLink and
nullif no such user exists
-
getServiceAccount
public UserModel getServiceAccount(ClientModel client)
Description copied from interface:UserProviderReturn a UserModel representing service account of the client- Specified by:
getServiceAccountin interfaceUserProvider- Parameters:
client- the client model- Returns:
- userModel representing service account of the client
-
getFederatedIdentitiesStream
public Stream<FederatedIdentityModel> getFederatedIdentitiesStream(RealmModel realm, UserModel user)
Description copied from interface:UserProviderObtains the federated identities of the specified user.- Specified by:
getFederatedIdentitiesStreamin interfaceUserProvider- Parameters:
realm- a reference to the realm.user- the reference to the user.- Returns:
- a non-null
Streamof federated identities associated with the user.
-
getFederatedIdentity
public FederatedIdentityModel getFederatedIdentity(RealmModel realm, UserModel user, String socialProvider)
Description copied from interface:UserProviderReturns details of the association between the user and the socialProvider.- Specified by:
getFederatedIdentityin interfaceUserProvider- Parameters:
realm- a reference to the realmuser- the user modelsocialProvider- the id of the identity provider- Returns:
- federatedIdentityModel or
nullif no association exists
-
preRemove
public void preRemove(RealmModel realm, ClientModel client)
Description copied from interface:UserProviderCalled when a client is removed. Should remove all user consents associated with the client- Specified by:
preRemovein interfaceUserProvider- Parameters:
realm- a reference to the realmclient- the client model
-
preRemove
public void preRemove(ProtocolMapperModel protocolMapper)
Description copied from interface:UserProviderCalled when a protocolMapper is removed- Specified by:
preRemovein interfaceUserProvider- Parameters:
protocolMapper- the protocolMapper model
-
preRemove
public void preRemove(ClientScopeModel clientScope)
Description copied from interface:UserProviderCalled when a client scope is removed. Should remove the clientScope from each user consent- Specified by:
preRemovein interfaceUserProvider- Parameters:
clientScope- the clientScope model
-
preRemove
public void preRemove(RealmModel realm, ComponentModel component)
Description copied from interface:UserProviderCalled when a component is removed. Should remove all data in UserStorage associated with removed component. For example,- if component corresponds to UserStorageProvider all imported users from the provider should be removed,
- if component corresponds to ClientStorageProvider all consents granted for clients imported from the provider should be removed
- Specified by:
preRemovein interfaceUserProvider- Parameters:
realm- a reference to the realmcomponent- the component model
-
removeImportedUsers
public void removeImportedUsers(RealmModel realm, String storageProviderId)
Description copied from interface:UserProviderRemoves any imported users from a specific User Storage Provider.- Specified by:
removeImportedUsersin interfaceUserProvider- Parameters:
realm- a reference to the realmstorageProviderId- id of the user storage provider
-
unlinkUsers
public void unlinkUsers(RealmModel realm, String storageProviderId)
Description copied from interface:UserProviderSet federation link tonullto imported users of a specific User Storage Provider- Specified by:
unlinkUsersin interfaceUserProvider- Parameters:
realm- a reference to the realmstorageProviderId- id of the storage provider
-
close
public void close()
UserProvidermethods implementations end here- Specified by:
closein interfaceProvider- Specified by:
closein interfaceUserProvider
-
onCreate
public void onCreate(KeycloakSession session, RealmModel realm, ComponentModel model)
- Specified by:
onCreatein interfaceOnCreateComponent
-
onUpdate
public void onUpdate(KeycloakSession session, RealmModel realm, ComponentModel oldModel, ComponentModel newModel)
- Specified by:
onUpdatein interfaceOnUpdateComponent
-
onCache
public void onCache(RealmModel realm, CachedUserModel user, UserModel delegate)
- Specified by:
onCachein interfaceOnUserCache
-
-