Class DefaultAttributes
- All Implemented Interfaces:
Serializable
,Cloneable
,Map<String,
,List<String>> Attributes
- Direct Known Subclasses:
ServiceAccountAttributes
The default implementation for Attributes
. Should be reused as much as possible by the different implementations
of UserProfileProvider
.
One of the main aspects of this implementation is to allow normalizing attributes accordingly to the profile configuration and current context. As such, it provides some common normalization to common profile attributes (e.g.: username, email, first and last names, dynamic read-only attributes).
This implementation is not specific to any user profile implementation.
- Author:
- Pedro Igor
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class java.util.AbstractMap
AbstractMap.SimpleEntry<K extends Object,
V extends Object>, AbstractMap.SimpleImmutableEntry<K extends Object, V extends Object> -
Field Summary
Modifier and TypeFieldDescriptionprotected final UserProfileContext
static final String
static final String
To reference dynamic attributes that can be configured as read-only when setting up the provider.protected final KeycloakSession
protected final UserModel
Fields inherited from interface org.keycloak.userprofile.Attributes
EMPTY_VALUE
-
Constructor Summary
ConstructorDescriptionDefaultAttributes
(UserProfileContext context, Map<String, ?> attributes, UserModel user, UserProfileMetadata profileMetadata, KeycloakSession session) -
Method Summary
Modifier and TypeMethodDescriptionprotected void
addDefaultValidators
(String name, List<AttributeMetadata> metadatas) boolean
Checks whether an attribute with the givenname
is defined.protected AttributeContext
createAttributeContext
(AttributeMetadata metadata) protected AttributeMetadata
Returns all values for an attribute with the givenname
.getMetadata
(String name) Returns the metadata associated with the attribute with the givenname
.Returns only the attributes that have read permissions in a particularUserProfileContext
.Returns aMap
holding any unmanaged attribute.Returns all the attributes with read-write permissions in a particularUserProfileContext
.protected boolean
protected boolean
boolean
isReadOnly
(String name) Checks whether an attribute is read-only.protected boolean
isReadOnlyFromMetadata
(String attributeName) Checks whether an attribute is marked as read only by looking at its metadata.protected boolean
isReadOnlyInternalAttribute
(String attributeName) Returns whether an attribute is read only based on the provider configuration (using provider config), usually related to internal attributes managed by the server.boolean
isRequired
(String name) Returns whether the attribute with the givenname
is required.protected boolean
isSupportedAttribute
(String name) Checks whether an attribute is support by the profile configuration and the current context.nameSet()
Returns the names of all defined attributes.normalizeAttributeValues
(String name, Object value) Intentionally kept to protected visibility to allow for custom normalization logic while clients adopt User Profileprotected void
toMap()
Returns the attributes as aMap
that are accessible to a particularUserProfileContext
.boolean
validate
(String name, Consumer<ValidationError>... listeners) Validates the attribute with the givenname
.Methods inherited from class java.util.HashMap
clear, clone, compute, computeIfAbsent, computeIfPresent, containsKey, containsValue, entrySet, forEach, get, getOrDefault, isEmpty, keySet, merge, put, putAll, putIfAbsent, remove, remove, replace, replace, replaceAll, size, values
Methods inherited from class java.util.AbstractMap
equals, hashCode, toString
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface org.keycloak.userprofile.Attributes
getFirst
-
Field Details
-
READ_ONLY_ATTRIBUTE_KEY
To reference dynamic attributes that can be configured as read-only when setting up the provider. We should probably remove that once we remove the legacy provider, because this will come from the configuration.- See Also:
-
DEFAULT_MAX_LENGTH_ATTRIBUTES
- See Also:
-
context
-
session
-
user
-
-
Constructor Details
-
DefaultAttributes
public DefaultAttributes(UserProfileContext context, Map<String, ?> attributes, UserModel user, UserProfileMetadata profileMetadata, KeycloakSession session)
-
-
Method Details
-
isReadOnly
Description copied from interface:Attributes
Checks whether an attribute is read-only.- Specified by:
isReadOnly
in interfaceAttributes
- Parameters:
name
- the attribute name- Returns:
true
if the attribute is read-only. Otherwise,false
-
isReadOnlyFromMetadata
Checks whether an attribute is marked as read only by looking at its metadata.- Parameters:
attributeName
- the attribute name- Returns:
-
isRequired
Description copied from interface:Attributes
Returns whether the attribute with the givenname
is required.- Specified by:
isRequired
in interfaceAttributes
- Parameters:
name
- the attribute name- Returns:
true
if the attribute is required. Otherwise,false
.
-
validate
Description copied from interface:Attributes
Validates the attribute with the givenname
.- Specified by:
validate
in interfaceAttributes
- Parameters:
name
- the name of the attributelisteners
- the listeners for listening for errors.ValidationError.inputHint
contains name of the attribute in error.- Returns:
true
if validation is successful. Otherwise,false
. In case there is no attribute with the givenname
,false
is also returned but without triggering listeners
-
addDefaultValidators
-
get
Description copied from interface:Attributes
Returns all values for an attribute with the givenname
.- Specified by:
get
in interfaceAttributes
- Parameters:
name
- the name of the attribute- Returns:
- the attribute values
-
contains
Description copied from interface:Attributes
Checks whether an attribute with the givenname
is defined.- Specified by:
contains
in interfaceAttributes
- Parameters:
name
- the name of the attribute- Returns:
true
if the attribute is defined. Otherwise,false
-
nameSet
Description copied from interface:Attributes
Returns the names of all defined attributes.- Specified by:
nameSet
in interfaceAttributes
- Returns:
- the set of attribute names
-
getWritable
Description copied from interface:Attributes
Returns all the attributes with read-write permissions in a particularUserProfileContext
.- Specified by:
getWritable
in interfaceAttributes
- Returns:
- the attributes
-
getMetadata
Description copied from interface:Attributes
Returns the metadata associated with the attribute with the given
name
.The
AttributeMetadata
is a copy of the original metadata. The original metadata keeps immutable.- Specified by:
getMetadata
in interfaceAttributes
- Parameters:
name
- the attribute name- Returns:
- the metadata
-
getReadable
Description copied from interface:Attributes
Returns only the attributes that have read permissions in a particularUserProfileContext
.- Specified by:
getReadable
in interfaceAttributes
- Returns:
- the attributes with read permission.
-
toMap
Description copied from interface:Attributes
Returns the attributes as aMap
that are accessible to a particularUserProfileContext
.- Specified by:
toMap
in interfaceAttributes
- Returns:
- a map with all the attributes
-
createAttributeContext
-
normalizeAttributeValues
Intentionally kept to protected visibility to allow for custom normalization logic while clients adopt User Profile -
isAllowUnmanagedAttribute
protected boolean isAllowUnmanagedAttribute() -
setUserName
-
isIncludeAttributeIfNotProvided
-
isSupportedAttribute
Checks whether an attribute is support by the profile configuration and the current context.
This method can be used to avoid unexpected attributes from being added as an attribute because the attribute source is a regular
Map
and not normalized.- Parameters:
name
- the name of the attribute- Returns:
-
isReadOnlyInternalAttribute
Returns whether an attribute is read only based on the provider configuration (using provider config), usually related to internal attributes managed by the server.
For user-defined attributes, it should be preferable to use the user profile configuration.
- Parameters:
attributeName
- the attribute name- Returns:
true
if the attribute is readonly. Otherwise, returnsfalse
-
getUnmanagedAttributes
Description copied from interface:Attributes
Returns aMap
holding any unmanaged attribute.- Specified by:
getUnmanagedAttributes
in interfaceAttributes
- Returns:
- a map with any unmanaged attribute
-
createUnmanagedAttributeMetadata
-