Package org.keycloak.models.map.common
Class AbstractMapProviderFactory<T extends Provider,V extends AbstractEntity,M>
- java.lang.Object
-
- org.keycloak.models.map.common.AbstractMapProviderFactory<T,V,M>
-
- All Implemented Interfaces:
AmphibianProviderFactory<T>
,ComponentFactory<T,T>
,ConfiguredProvider
,EnvironmentDependentProviderFactory
,ProviderFactory<T>
- Direct Known Subclasses:
MapClientProviderFactory
,MapClientScopeProviderFactory
,MapGroupProviderFactory
,MapRealmProviderFactory
,MapRoleProviderFactory
,MapRootAuthenticationSessionProviderFactory
,MapUserLoginFailureProviderFactory
,MapUserProviderFactory
public abstract class AbstractMapProviderFactory<T extends Provider,V extends AbstractEntity,M> extends Object implements AmphibianProviderFactory<T>, EnvironmentDependentProviderFactory
- Author:
- hmlnarik
-
-
Field Summary
Fields Modifier and Type Field Description static String
CONFIG_STORAGE
protected org.jboss.logging.Logger
LOG
protected Class<M>
modelType
static String
PROVIDER_ID
-
Constructor Summary
Constructors Modifier Constructor Description protected
AbstractMapProviderFactory(Class<M> modelType)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getId()
protected MapStorage<V,M>
getStorage(KeycloakSession session)
void
init(Config.Scope config)
Only called once when the factory is first created.boolean
isSupported()
void
postInit(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.AmphibianProviderFactory
close, create, create, getConfigProperties, onUpdate, preRemove
-
Methods inherited from interface org.keycloak.component.ComponentFactory
getCommonProviderConfigProperties, getTypeMetadata, onCreate, validateConfiguration
-
Methods inherited from interface org.keycloak.provider.ConfiguredProvider
getConfig, getHelpText
-
Methods inherited from interface org.keycloak.provider.EnvironmentDependentProviderFactory
isSupported
-
Methods inherited from interface org.keycloak.provider.ProviderFactory
getConfigMetadata, order
-
-
-
-
Field Detail
-
PROVIDER_ID
public static final String PROVIDER_ID
- See Also:
- Constant Field Values
-
CONFIG_STORAGE
public static final String CONFIG_STORAGE
- See Also:
- Constant Field Values
-
LOG
protected final org.jboss.logging.Logger LOG
-
-
Method Detail
-
getId
public String getId()
- Specified by:
getId
in interfaceProviderFactory<T extends Provider>
-
getStorage
protected MapStorage<V,M> getStorage(KeycloakSession session)
-
postInit
public void postInit(KeycloakSessionFactory factory)
Description copied from interface:ProviderFactory
Called after all provider factories have been initialized- Specified by:
postInit
in interfaceProviderFactory<T extends Provider>
-
init
public void init(Config.Scope config)
Description copied from interface:ProviderFactory
Only called once when the factory is first created. This config is pulled from keycloak_server.json- Specified by:
init
in interfaceProviderFactory<T extends Provider>
-
isSupported
public boolean isSupported()
- Specified by:
isSupported
in interfaceEnvironmentDependentProviderFactory
- Returns:
true
if the provider is supported and should be available,false
otherwise
-
-