Class InfinispanAuthenticationSessionProviderFactory
java.lang.Object
org.keycloak.models.sessions.infinispan.InfinispanAuthenticationSessionProviderFactory
- All Implemented Interfaces:
EnvironmentDependentProviderFactory
,ProviderEventListener
,ProviderFactory<InfinispanAuthenticationSessionProvider>
,AuthenticationSessionProviderFactory<InfinispanAuthenticationSessionProvider>
public class InfinispanAuthenticationSessionProviderFactory
extends Object
implements AuthenticationSessionProviderFactory<InfinispanAuthenticationSessionProvider>, EnvironmentDependentProviderFactory, ProviderEventListener
- Author:
- Marek Posolda
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
close()
This is called when the server shuts down.create
(KeycloakSession session) Optional method used to declare that a ProviderFactory has a dependency on one or more Providers.static int
getAuthSessionsLimit
(Config.Scope config) Returns the metadata for each configuration property supported by this factory.getId()
void
init
(Config.Scope config) Only called once when the factory is first created.boolean
isSupported
(Config.Scope config) Check if the provider is supported and should be available based on the provider configuration.void
onEvent
(ProviderEvent event) int
order()
void
postInit
(KeycloakSessionFactory factory) Called after all provider factories have been initializedprotected void
registerClusterListeners
(KeycloakSession session)
-
Field Details
-
AUTH_SESSIONS_LIMIT
- See Also:
-
DEFAULT_AUTH_SESSIONS_LIMIT
public static final int DEFAULT_AUTH_SESSIONS_LIMIT- See Also:
-
AUTHENTICATION_SESSION_EVENTS
- See Also:
-
REALM_REMOVED_AUTHSESSION_EVENT
- See Also:
-
-
Constructor Details
-
InfinispanAuthenticationSessionProviderFactory
public InfinispanAuthenticationSessionProviderFactory()
-
-
Method Details
-
init
Description copied from interface:ProviderFactory
Only called once when the factory is first created.- Specified by:
init
in interfaceProviderFactory<InfinispanAuthenticationSessionProvider>
-
getAuthSessionsLimit
-
postInit
Description copied from interface:ProviderFactory
Called after all provider factories have been initialized- Specified by:
postInit
in interfaceProviderFactory<InfinispanAuthenticationSessionProvider>
-
getConfigMetadata
Description copied from interface:ProviderFactory
Returns the metadata for each configuration property supported by this factory.- Specified by:
getConfigMetadata
in interfaceProviderFactory<InfinispanAuthenticationSessionProvider>
- Returns:
- a list with the metadata for each configuration property supported by this factory
-
onEvent
- Specified by:
onEvent
in interfaceProviderEventListener
-
registerClusterListeners
-
create
- Specified by:
create
in interfaceProviderFactory<InfinispanAuthenticationSessionProvider>
-
dependsOn
Description copied from interface:ProviderFactory
Optional method used to declare that a ProviderFactory has a dependency on one or more Providers. If a Provider is declared here, it is guaranteed that the dependenciesProviderFactory.postInit(org.keycloak.models.KeycloakSessionFactory)
method will be executed before this ProviderFactory'sProviderFactory.postInit(org.keycloak.models.KeycloakSessionFactory)
. Similarly, it's guaranteed thatProviderFactory.close()
will be called on thisProviderFactory
beforeProviderFactory.close()
is called on any of the dependent ProviderFactory implementations.- Specified by:
dependsOn
in interfaceProviderFactory<InfinispanAuthenticationSessionProvider>
-
close
public void close()Description copied from interface:ProviderFactory
This is called when the server shuts down.- Specified by:
close
in interfaceProviderFactory<InfinispanAuthenticationSessionProvider>
-
getId
- Specified by:
getId
in interfaceProviderFactory<InfinispanAuthenticationSessionProvider>
-
order
public int order()- Specified by:
order
in interfaceProviderFactory<InfinispanAuthenticationSessionProvider>
-
isSupported
Description copied from interface:EnvironmentDependentProviderFactory
Check if the provider is supported and should be available based on the provider configuration.- Specified by:
isSupported
in interfaceEnvironmentDependentProviderFactory
- Parameters:
config
- the provider configuration- Returns:
true
if the provider is supported. Otherwise,false
.
-