Package org.keycloak.userprofile
Class DeclarativeUserProfileProvider
- java.lang.Object
- 
- org.keycloak.userprofile.AbstractUserProfileProvider<UserProfileProvider>
- 
- org.keycloak.userprofile.DeclarativeUserProfileProvider
 
 
- 
- All Implemented Interfaces:
- AmphibianProviderFactory<UserProfileProvider>,- ComponentFactory<UserProfileProvider,UserProfileProvider>,- ConfiguredProvider,- Provider,- ProviderFactory<UserProfileProvider>,- UserProfileProvider,- UserProfileProviderFactory<UserProfileProvider>
 
 public class DeclarativeUserProfileProvider extends AbstractUserProfileProvider<UserProfileProvider> implements AmphibianProviderFactory<UserProfileProvider> UserProfileProviderloading configuration from the changeable JSON file stored in component config. Parsed configuration is cached.- Author:
- Pedro Igor, Vlastimil Elias 
 
- 
- 
Field SummaryFields Modifier and Type Field Description static StringIDstatic intPROVIDER_PRIORITYstatic StringREALM_USER_PROFILE_ENABLEDstatic StringUP_PIECES_COUNT_COMPONENT_CONFIG_KEY- 
Fields inherited from class org.keycloak.userprofile.AbstractUserProfileProviderCONFIG_ADMIN_READ_ONLY_ATTRIBUTES, CONFIG_READ_ONLY_ATTRIBUTES, contextualMetadataRegistry, session
 
- 
 - 
Constructor SummaryConstructors Constructor Description DeclarativeUserProfileProvider()DeclarativeUserProfileProvider(KeycloakSession session, Map<UserProfileContext,UserProfileMetadata> metadataRegistry, String defaultRawConfig)
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description protected UserProfileMetadataconfigureUserProfile(UserProfileMetadata metadata, KeycloakSession session)Sub-types can override this method to customize how contextual profile metadata is configured at runtime.protected UserProfileProvidercreate(KeycloakSession session, Map<UserProfileContext,UserProfileMetadata> metadataRegistry)Subclasses can override this method to create their instances ofUserProfileProvider.protected AttributescreateAttributes(UserProfileContext context, Map<String,?> attributes, UserModel user, UserProfileMetadata metadata)protected ComponentModelcreateComponentModel()Create the component model to store configurationprotected AttributeValidatorMetadatacreateConfiguredValidator(String validator, Map<String,Object> validatorConfig)Create validator for validation configured in the user profile config.protected UserProfileMetadatadecorateUserProfileForCache(UserProfileMetadata decoratedMetadata, ComponentModel model)Decorate basic metadata provided fromAbstractUserProfileProviderbased on 'per realm' configuration.ComponentModelgetComponentModel()List<ProviderConfigProperty>getConfigProperties()StringgetConfiguration()Get current UserProfile configuration.StringgetHelpText()StringgetId()protected UPConfiggetParsedConfig(ComponentModel model)Get parsed config file configured in model.voidinit(Config.Scope config)Only called once when the factory is first created.intorder()voidsetConfiguration(String configuration)Set new UserProfile configuration.voidvalidateConfiguration(KeycloakSession session, RealmModel realm, ComponentModel model)Called before a component is created or updated.- 
Methods inherited from class org.keycloak.userprofile.AbstractUserProfileProviderclose, configureUserProfile, create, create, create, create, getConfigMetadata, getRegexPatternString, postInit
 - 
Methods inherited from class java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 - 
Methods inherited from interface org.keycloak.component.AmphibianProviderFactoryclose, create, create, onUpdate, preRemove
 - 
Methods inherited from interface org.keycloak.component.ComponentFactorygetCommonProviderConfigProperties, getTypeMetadata, onCreate
 - 
Methods inherited from interface org.keycloak.provider.ConfiguredProvidergetConfig
 - 
Methods inherited from interface org.keycloak.provider.ProviderFactorygetConfigMetadata, postInit
 
- 
 
- 
- 
- 
Field Detail- 
IDpublic static final String ID - See Also:
- Constant Field Values
 
 - 
PROVIDER_PRIORITYpublic static final int PROVIDER_PRIORITY - See Also:
- Constant Field Values
 
 - 
UP_PIECES_COUNT_COMPONENT_CONFIG_KEYpublic static final String UP_PIECES_COUNT_COMPONENT_CONFIG_KEY - See Also:
- Constant Field Values
 
 - 
REALM_USER_PROFILE_ENABLEDpublic static final String REALM_USER_PROFILE_ENABLED - See Also:
- Constant Field Values
 
 
- 
 - 
Constructor Detail- 
DeclarativeUserProfileProviderpublic DeclarativeUserProfileProvider() 
 - 
DeclarativeUserProfileProviderpublic DeclarativeUserProfileProvider(KeycloakSession session, Map<UserProfileContext,UserProfileMetadata> metadataRegistry, String defaultRawConfig) 
 
- 
 - 
Method Detail- 
getIdpublic String getId() - Specified by:
- getIdin interface- ProviderFactory<UserProfileProvider>
 
 - 
createprotected UserProfileProvider create(KeycloakSession session, Map<UserProfileContext,UserProfileMetadata> metadataRegistry) Description copied from class:AbstractUserProfileProviderSubclasses can override this method to create their instances ofUserProfileProvider.- Specified by:
- createin class- AbstractUserProfileProvider<UserProfileProvider>
- Parameters:
- session- the session
- metadataRegistry- the profile metadata
- Returns:
- the profile provider instance
 
 - 
createAttributesprotected Attributes createAttributes(UserProfileContext context, Map<String,?> attributes, UserModel user, UserProfileMetadata metadata) - Overrides:
- createAttributesin class- AbstractUserProfileProvider<UserProfileProvider>
 
 - 
configureUserProfileprotected UserProfileMetadata configureUserProfile(UserProfileMetadata metadata, KeycloakSession session) Description copied from class:AbstractUserProfileProviderSub-types can override this method to customize how contextual profile metadata is configured at runtime.- Overrides:
- configureUserProfilein class- AbstractUserProfileProvider<UserProfileProvider>
- Parameters:
- metadata- the profile metadata
- session- the current session
- Returns:
- the metadata
 
 - 
getHelpTextpublic String getHelpText() - Specified by:
- getHelpTextin interface- ConfiguredProvider
 
 - 
validateConfigurationpublic void validateConfiguration(KeycloakSession session, RealmModel realm, ComponentModel model) throws ComponentValidationException Description copied from interface:ComponentFactoryCalled before a component is created or updated. Allows you to validate the configuration- Specified by:
- validateConfigurationin interface- ComponentFactory<UserProfileProvider,UserProfileProvider>
- Throws:
- ComponentValidationException
 
 - 
getConfigurationpublic String getConfiguration() Description copied from interface:UserProfileProviderGet current UserProfile configuration. JSON formatted file is expected, but depends on the implementation.- Specified by:
- getConfigurationin interface- UserProfileProvider
- Overrides:
- getConfigurationin class- AbstractUserProfileProvider<UserProfileProvider>
- Returns:
- current UserProfile configuration
- See Also:
- UserProfileProvider.setConfiguration(String)
 
 - 
setConfigurationpublic void setConfiguration(String configuration) Description copied from interface:UserProfileProviderSet new UserProfile configuration. It is persisted inside of the provider.- Specified by:
- setConfigurationin interface- UserProfileProvider
- Overrides:
- setConfigurationin class- AbstractUserProfileProvider<UserProfileProvider>
- Parameters:
- configuration- to be set
- See Also:
- UserProfileProvider.getConfiguration()
 
 - 
getConfigPropertiespublic List<ProviderConfigProperty> getConfigProperties() - Specified by:
- getConfigPropertiesin interface- AmphibianProviderFactory<UserProfileProvider>
- Specified by:
- getConfigPropertiesin interface- ConfiguredProvider
 
 - 
initpublic void init(Config.Scope config) Description copied from interface:ProviderFactoryOnly called once when the factory is first created. This config is pulled from keycloak_server.json- Specified by:
- initin interface- ProviderFactory<UserProfileProvider>
- Overrides:
- initin class- AbstractUserProfileProvider<UserProfileProvider>
 
 - 
orderpublic int order() - Specified by:
- orderin interface- ProviderFactory<UserProfileProvider>
 
 - 
getComponentModelpublic ComponentModel getComponentModel() 
 - 
decorateUserProfileForCacheprotected UserProfileMetadata decorateUserProfileForCache(UserProfileMetadata decoratedMetadata, ComponentModel model) Decorate basic metadata provided fromAbstractUserProfileProviderbased on 'per realm' configuration. This method is called for eachUserProfileContextin each realm, and metadata are cached then and this method is called again only if configuration changes.- Parameters:
- decoratedMetadata- base to be decorated based on configuration loaded from component model
- model- component model to get "per realm" configuration from
- Returns:
- decorated metadata
 
 - 
getParsedConfigprotected UPConfig getParsedConfig(ComponentModel model) Get parsed config file configured in model. Default one used if not configured.- Parameters:
- model- to take config from
- Returns:
- parsed configuration
 
 - 
createComponentModelprotected ComponentModel createComponentModel() Create the component model to store configuration- Returns:
- component model
 
 - 
createConfiguredValidatorprotected AttributeValidatorMetadata createConfiguredValidator(String validator, Map<String,Object> validatorConfig) Create validator for validation configured in the user profile config.- Parameters:
- validator- id to create validator for
- validatorConfig- of the validator
- Returns:
- validator metadata to run given validation
 
 
- 
 
-