Class InfinispanAuthenticationSessionProviderFactory
java.lang.Object
org.keycloak.models.sessions.infinispan.InfinispanAuthenticationSessionProviderFactory
- All Implemented Interfaces:
EnvironmentDependentProviderFactory
,ProviderFactory<InfinispanAuthenticationSessionProvider>
,AuthenticationSessionProviderFactory<InfinispanAuthenticationSessionProvider>
public class InfinispanAuthenticationSessionProviderFactory
extends Object
implements AuthenticationSessionProviderFactory<InfinispanAuthenticationSessionProvider>, EnvironmentDependentProviderFactory
- Author:
- Marek Posolda
-
Field Summary
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
close()
This is called when the server shuts down.create
(KeycloakSession session) 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.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. This config is pulled from keycloak_server.json- 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
-
registerClusterListeners
-
create
- Specified by:
create
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
.
-