Package org.keycloak.storage.adapter
Class AbstractUserAdapter
- java.lang.Object
- 
- org.keycloak.models.UserModelDefaultMethods
- 
- org.keycloak.storage.adapter.AbstractUserAdapter
 
 
- 
- All Implemented Interfaces:
- RoleMapperModel,- UserModel
 - Direct Known Subclasses:
- AbstractUserAdapter.Streams
 
 public abstract class AbstractUserAdapter extends UserModelDefaultMethods This abstract class provides implementations for everything but getUsername(). getId() returns a default value of "f:" + providerId + ":" + getUsername(). isEnabled() returns true. getRoleMappings() will return default roles. getGroups() will return default groups. All other read methods return null, an empty collection, or false depending on the type. All update methods throw a ReadOnlyException. Provider implementors should override the methods for attributes, properties, and mappings they support.- Version:
- $Revision: 1 $
- Author:
- Bill Burke
 
- 
- 
Nested Class SummaryNested Classes Modifier and Type Class Description static classAbstractUserAdapter.StreamsTheStreams(org.keycloak.models.KeycloakSession,org.keycloak.models.RealmModel,org.keycloak.component.ComponentModel)interface makes all collection-based methods inAbstractUserAdapterdefault by providing implementations that delegate to theStream-based variants instead of the other way around.- 
Nested classes/interfaces inherited from interface org.keycloak.models.UserModelUserModel.RequiredAction, UserModel.SearchableFields, UserModel.UserRemovedEvent
 
- 
 - 
Field SummaryFields Modifier and Type Field Description protected longcreatedprotected RealmModelrealmprotected KeycloakSessionsessionprotected StorageIdstorageIdprotected ComponentModelstorageProviderModel- 
Fields inherited from interface org.keycloak.models.UserModelCOMPARE_BY_USERNAME, DISABLED_REASON, EMAIL, EMAIL_VERIFIED, ENABLED, EXACT, FIRST_NAME, GROUPS, IDP_ALIAS, IDP_USER_ID, INCLUDE_SERVICE_ACCOUNT, LAST_NAME, LOCALE, SEARCH, USERNAME
 
- 
 - 
Constructor SummaryConstructors Constructor Description AbstractUserAdapter(KeycloakSession session, RealmModel realm, ComponentModel storageProviderModel)
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description voidaddRequiredAction(String action)voidaddRequiredAction(UserModel.RequiredAction action)protected booleanappendDefaultGroups()Should the realm's default groups be appended to getGroups() call? If your storage provider is not managing group mappings then it is recommended that this method return trueprotected booleanappendDefaultRolesToRoleMappings()Should the realm's default roles be appended to getRoleMappings() call? If your storage provider is not managing all role mappings then it is recommended that this method return truevoiddeleteRoleMapping(RoleModel role)Removes the given role mapping from this object.booleanequals(Object o)List<String>getAttribute(String name)Deprecated.UsegetAttributeStream(String)insteadMap<String,List<String>>getAttributes()Stream<String>getAttributeStream(String name)Obtains all values associated with the specified attribute name.Set<RoleModel>getClientRoleMappings(ClientModel app)Deprecated.UsegetClientRoleMappingsStream(ClientModel)insteadStream<RoleModel>getClientRoleMappingsStream(ClientModel app)Returns stream of client roles that are directly set to this object for the given client.LonggetCreatedTimestamp()Get timestamp of user creation.StringgetEmail()StringgetFederationLink()This method should not be overridenStringgetFirstAttribute(String name)StringgetFirstName()Set<GroupModel>getGroups()Deprecated.UsegetGroupsStream()insteadprotected Set<GroupModel>getGroupsInternal()Get group membership mappings that are managed by this storage providerStream<GroupModel>getGroupsStream()Obtains the groups associated with the user.StringgetId()Defaults to 'f:' + storageProvider.getId() + ':' + getUsername()StringgetLastName()Set<RoleModel>getRealmRoleMappings()Deprecated.UsegetRealmRoleMappingsStream()insteadStream<RoleModel>getRealmRoleMappingsStream()Returns stream of realm roles that are directly set to this object.Set<String>getRequiredActions()Deprecated.Stream<String>getRequiredActionsStream()Obtains the names of required actions associated with the user.Set<RoleModel>getRoleMappings()Deprecated.UsegetRoleMappingsStream()insteadprotected Set<RoleModel>getRoleMappingsInternal()Stream<RoleModel>getRoleMappingsStream()Returns stream of all role (both realm all client) that are directly set to this object.StringgetServiceAccountClientLink()This method should not be overridenvoidgrantRole(RoleModel role)Grants the given role to this object.inthashCode()booleanhasRole(RoleModel role)Returnstrueif this object is directly or indirectly assigned the given role,falseotherwise.booleanisEmailVerified()booleanisEnabled()booleanisMemberOf(GroupModel group)voidjoinGroup(GroupModel group)voidleaveGroup(GroupModel group)voidremoveAttribute(String name)voidremoveRequiredAction(String action)voidremoveRequiredAction(UserModel.RequiredAction action)voidsetAttribute(String name, List<String> values)voidsetCreatedTimestamp(Long timestamp)voidsetEmail(String email)Sets email for this user.voidsetEmailVerified(boolean verified)voidsetEnabled(boolean enabled)voidsetFederationLink(String link)This method should not be overridenvoidsetFirstName(String firstName)voidsetLastName(String lastName)voidsetServiceAccountClientLink(String clientInternalId)This method should not be overridenvoidsetSingleAttribute(String name, String value)Set single value of specified attribute.voidsetUsername(String username)Sets username for this user.- 
Methods inherited from class org.keycloak.models.UserModelDefaultMethodstoString
 - 
Methods inherited from class java.lang.Objectclone, finalize, getClass, notify, notifyAll, wait, wait, wait
 - 
Methods inherited from interface org.keycloak.models.RoleMapperModelhasDirectRole
 - 
Methods inherited from interface org.keycloak.models.UserModelcredentialManager, getGroupsCount, getGroupsCountByNameContaining, getGroupsStream, getUsername
 
- 
 
- 
- 
- 
Field Detail- 
sessionprotected KeycloakSession session 
 - 
realmprotected RealmModel realm 
 - 
storageProviderModelprotected ComponentModel storageProviderModel 
 - 
storageIdprotected StorageId storageId 
 - 
createdprotected long created 
 
- 
 - 
Constructor Detail- 
AbstractUserAdapterpublic AbstractUserAdapter(KeycloakSession session, RealmModel realm, ComponentModel storageProviderModel) 
 
- 
 - 
Method Detail- 
getRequiredActionsStreampublic Stream<String> getRequiredActionsStream() Description copied from interface:UserModelObtains the names of required actions associated with the user.- Returns:
- a non-null Streamof required action names.
 
 - 
addRequiredActionpublic void addRequiredAction(String action) 
 - 
removeRequiredActionpublic void removeRequiredAction(String action) 
 - 
addRequiredActionpublic void addRequiredAction(UserModel.RequiredAction action) 
 - 
removeRequiredActionpublic void removeRequiredAction(UserModel.RequiredAction action) 
 - 
getGroupsInternalprotected Set<GroupModel> getGroupsInternal() Get group membership mappings that are managed by this storage provider- Returns:
 
 - 
appendDefaultGroupsprotected boolean appendDefaultGroups() Should the realm's default groups be appended to getGroups() call? If your storage provider is not managing group mappings then it is recommended that this method return true- Returns:
 
 - 
getGroupspublic Set<GroupModel> getGroups() Deprecated.UsegetGroupsStream()instead
 - 
getGroupsStreampublic Stream<GroupModel> getGroupsStream() Description copied from interface:UserModelObtains the groups associated with the user.- Returns:
- a non-null Streamof groups.
 
 - 
joinGrouppublic void joinGroup(GroupModel group) 
 - 
leaveGrouppublic void leaveGroup(GroupModel group) 
 - 
isMemberOfpublic boolean isMemberOf(GroupModel group) 
 - 
getRealmRoleMappingspublic Set<RoleModel> getRealmRoleMappings() Deprecated.UsegetRealmRoleMappingsStream()instead
 - 
getRealmRoleMappingsStreampublic Stream<RoleModel> getRealmRoleMappingsStream() Description copied from interface:RoleMapperModelReturns stream of realm roles that are directly set to this object.- Returns:
- Stream of RoleModel. Never returnsnull.
 
 - 
getClientRoleMappingspublic Set<RoleModel> getClientRoleMappings(ClientModel app) Deprecated.UsegetClientRoleMappingsStream(ClientModel)instead
 - 
getClientRoleMappingsStreampublic Stream<RoleModel> getClientRoleMappingsStream(ClientModel app) Description copied from interface:RoleMapperModelReturns stream of client roles that are directly set to this object for the given client.- Parameters:
- app-- ClientModelClient to get the roles for.
- Returns:
- Stream of RoleModel. Never returnsnull.
 
 - 
hasRolepublic boolean hasRole(RoleModel role) Description copied from interface:RoleMapperModelReturnstrueif this object is directly or indirectly assigned the given role,falseotherwise.For example, trueis returned for hasRole(R) if:- R is directly assigned to this object
- R is indirectly assigned to this object via composites
- R is not assigned to this object but this object belongs to a group G which is assigned the role R
- R is not assigned to this object but this object belongs to a group G, and G belongs to group H which is assigned the role R
 - Returns:
- see description
- See Also:
- if you want to check if this object is directly assigned to a role
 
 - 
grantRolepublic void grantRole(RoleModel role) Description copied from interface:RoleMapperModelGrants the given role to this object.
 - 
appendDefaultRolesToRoleMappingsprotected boolean appendDefaultRolesToRoleMappings() Should the realm's default roles be appended to getRoleMappings() call? If your storage provider is not managing all role mappings then it is recommended that this method return true- Returns:
 
 - 
getRoleMappingspublic Set<RoleModel> getRoleMappings() Deprecated.UsegetRoleMappingsStream()instead
 - 
getRoleMappingsStreampublic Stream<RoleModel> getRoleMappingsStream() Description copied from interface:RoleMapperModelReturns stream of all role (both realm all client) that are directly set to this object.- Returns:
- Stream of RoleModel. Never returnsnull.
 
 - 
deleteRoleMappingpublic void deleteRoleMapping(RoleModel role) Description copied from interface:RoleMapperModelRemoves the given role mapping from this object.- Parameters:
- role- Role to remove
 
 - 
isEnabledpublic boolean isEnabled() 
 - 
setEnabledpublic void setEnabled(boolean enabled) 
 - 
getFederationLinkpublic String getFederationLink() This method should not be overriden- Returns:
 
 - 
setFederationLinkpublic void setFederationLink(String link) This method should not be overriden
 - 
getServiceAccountClientLinkpublic String getServiceAccountClientLink() This method should not be overriden- Returns:
 
 - 
setServiceAccountClientLinkpublic void setServiceAccountClientLink(String clientInternalId) This method should not be overriden
 - 
getIdpublic String getId() Defaults to 'f:' + storageProvider.getId() + ':' + getUsername()- Returns:
 
 - 
setUsernamepublic void setUsername(String username) Description copied from interface:UserModelSets username for this user. No default method here to allow Abstract subclasses where the username is provided in a different manner- Parameters:
- username- username string
 
 - 
getCreatedTimestamppublic Long getCreatedTimestamp() Description copied from interface:UserModelGet timestamp of user creation. May be null for old users created before this feature introduction.
 - 
setCreatedTimestamppublic void setCreatedTimestamp(Long timestamp) 
 - 
setSingleAttributepublic void setSingleAttribute(String name, String value) Description copied from interface:UserModelSet single value of specified attribute. Remove all other existing values of this attribute
 - 
removeAttributepublic void removeAttribute(String name) 
 - 
getFirstAttributepublic String getFirstAttribute(String name) - Returns:
- null if there is not any value of specified attribute or first value otherwise. Don't throw exception if there are more values of the attribute
 
 - 
getAttributepublic List<String> getAttribute(String name) Deprecated.UsegetAttributeStream(String)instead
 - 
getAttributeStreampublic Stream<String> getAttributeStream(String name) Description copied from interface:UserModelObtains all values associated with the specified attribute name.- Parameters:
- name- the name of the attribute.
- Returns:
- a non-null Streamof attribute values.
 
 - 
getFirstNamepublic String getFirstName() - Specified by:
- getFirstNamein interface- UserModel
- Overrides:
- getFirstNamein class- UserModelDefaultMethods
 
 - 
setFirstNamepublic void setFirstName(String firstName) - Specified by:
- setFirstNamein interface- UserModel
- Overrides:
- setFirstNamein class- UserModelDefaultMethods
 
 - 
getLastNamepublic String getLastName() - Specified by:
- getLastNamein interface- UserModel
- Overrides:
- getLastNamein class- UserModelDefaultMethods
 
 - 
setLastNamepublic void setLastName(String lastName) - Specified by:
- setLastNamein interface- UserModel
- Overrides:
- setLastNamein class- UserModelDefaultMethods
 
 - 
getEmailpublic String getEmail() - Specified by:
- getEmailin interface- UserModel
- Overrides:
- getEmailin class- UserModelDefaultMethods
 
 - 
setEmailpublic void setEmail(String email) Description copied from interface:UserModelSets email for this user.- Specified by:
- setEmailin interface- UserModel
- Overrides:
- setEmailin class- UserModelDefaultMethods
- Parameters:
- email- the email
 
 - 
isEmailVerifiedpublic boolean isEmailVerified() 
 - 
setEmailVerifiedpublic void setEmailVerified(boolean verified) 
 
- 
 
-