Class AbstractLDAPStorageMapperFactory
- java.lang.Object
-
- org.keycloak.storage.ldap.mappers.AbstractLDAPStorageMapperFactory
-
- All Implemented Interfaces:
ComponentFactory<LDAPStorageMapper,LDAPStorageMapper>,SubComponentFactory<LDAPStorageMapper,LDAPStorageMapper>,ConfiguredProvider,ProviderFactory<LDAPStorageMapper>,LDAPStorageMapperFactory<LDAPStorageMapper>
- Direct Known Subclasses:
FullNameLDAPStorageMapperFactory,GroupLDAPStorageMapperFactory,HardcodedAttributeMapperFactory,HardcodedLDAPAttributeMapperFactory,HardcodedLDAPGroupStorageMapperFactory,HardcodedLDAPRoleStorageMapperFactory,MSADLDSUserAccountControlStorageMapperFactory,MSADUserAccountControlStorageMapperFactory,RoleLDAPStorageMapperFactory,UserAttributeLDAPStorageMapperFactory
public abstract class AbstractLDAPStorageMapperFactory extends Object implements LDAPStorageMapperFactory<LDAPStorageMapper>
- Author:
- Marek Posolda
-
-
Constructor Summary
Constructors Constructor Description AbstractLDAPStorageMapperFactory()
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description protected voidcheckMandatoryConfigAttribute(String name, String displayName, ComponentModel mapperModel)voidclose()This is called when the server shuts down.LDAPStorageMappercreate(KeycloakSession session, ComponentModel model)called per Keycloak transaction.static ProviderConfigPropertycreateConfigProperty(String name, String label, String helpText, String type, List<String> options)protected abstract AbstractLDAPStorageMappercreateMapper(ComponentModel mapperModel, LDAPStorageProvider federationProvider)Map<String,Object>getTypeMetadata()This is metadata about this component type.voidinit(Config.Scope config)Only called once when the factory is first created.voidpostInit(KeycloakSessionFactory factory)Called after all provider factories have been initialized-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.keycloak.component.ComponentFactory
create, getCommonProviderConfigProperties, onUpdate, preRemove
-
Methods inherited from interface org.keycloak.provider.ConfiguredProvider
getConfig
-
Methods inherited from interface org.keycloak.storage.ldap.mappers.LDAPStorageMapperFactory
getConfigProperties, getHelpText, getId, onCreate, onParentUpdate, validateConfiguration
-
Methods inherited from interface org.keycloak.provider.ProviderFactory
getConfigMetadata, order
-
Methods inherited from interface org.keycloak.component.SubComponentFactory
getConfigProperties, getTypeMetadata
-
-
-
-
Method Detail
-
init
public 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 interfaceLDAPStorageMapperFactory<LDAPStorageMapper>- Specified by:
initin interfaceProviderFactory<LDAPStorageMapper>
-
create
public LDAPStorageMapper create(KeycloakSession session, ComponentModel model)
Description copied from interface:LDAPStorageMapperFactorycalled per Keycloak transaction.- Specified by:
createin interfaceComponentFactory<LDAPStorageMapper,LDAPStorageMapper>- Specified by:
createin interfaceLDAPStorageMapperFactory<LDAPStorageMapper>
-
createMapper
protected abstract AbstractLDAPStorageMapper createMapper(ComponentModel mapperModel, LDAPStorageProvider federationProvider)
-
postInit
public void postInit(KeycloakSessionFactory factory)
Description copied from interface:ProviderFactoryCalled after all provider factories have been initialized- Specified by:
postInitin interfaceLDAPStorageMapperFactory<LDAPStorageMapper>- Specified by:
postInitin interfaceProviderFactory<LDAPStorageMapper>
-
getTypeMetadata
public Map<String,Object> getTypeMetadata()
Description copied from interface:ComponentFactoryThis is metadata about this component type. Its really configuration information about the component type and not an individual instance- Specified by:
getTypeMetadatain interfaceComponentFactory<LDAPStorageMapper,LDAPStorageMapper>- Returns:
-
close
public void close()
Description copied from interface:ProviderFactoryThis is called when the server shuts down.- Specified by:
closein interfaceLDAPStorageMapperFactory<LDAPStorageMapper>- Specified by:
closein interfaceProviderFactory<LDAPStorageMapper>
-
createConfigProperty
public static ProviderConfigProperty createConfigProperty(String name, String label, String helpText, String type, List<String> options)
-
checkMandatoryConfigAttribute
protected void checkMandatoryConfigAttribute(String name, String displayName, ComponentModel mapperModel) throws ComponentValidationException
- Throws:
ComponentValidationException
-
-