Class InfinispanSingleUseObjectProviderFactory
java.lang.Object
org.keycloak.models.sessions.infinispan.InfinispanSingleUseObjectProviderFactory
- All Implemented Interfaces:
SingleUseObjectProviderFactory<InfinispanSingleUseObjectProvider>
,EnvironmentDependentProviderFactory
,ProviderFactory<InfinispanSingleUseObjectProvider>
,ServerInfoAwareProviderFactory
public class InfinispanSingleUseObjectProviderFactory
extends Object
implements SingleUseObjectProviderFactory<InfinispanSingleUseObjectProvider>, EnvironmentDependentProviderFactory, ServerInfoAwareProviderFactory
- Author:
- Marek Posolda
-
Field Summary
Modifier and TypeFieldDescriptionstatic final String
static final boolean
static final String
protected Supplier<org.infinispan.commons.api.BasicCache<String,
SingleUseObjectValueEntity>> -
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
close()
This is called when the server shuts down.create
(KeycloakSession session) Returns the metadata for each configuration property supported by this factory.getId()
Return actual info about the provider.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 initialized
-
Field Details
-
CONFIG_PERSIST_REVOKED_TOKENS
- See Also:
-
DEFAULT_PERSIST_REVOKED_TOKENS
public static final boolean DEFAULT_PERSIST_REVOKED_TOKENS- See Also:
-
LOADED
- See Also:
-
singleUseObjectCache
protected volatile Supplier<org.infinispan.commons.api.BasicCache<String,SingleUseObjectValueEntity>> singleUseObjectCache
-
-
Constructor Details
-
InfinispanSingleUseObjectProviderFactory
public InfinispanSingleUseObjectProviderFactory()
-
-
Method Details
-
create
- Specified by:
create
in interfaceProviderFactory<InfinispanSingleUseObjectProvider>
-
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<InfinispanSingleUseObjectProvider>
-
postInit
Description copied from interface:ProviderFactory
Called after all provider factories have been initialized- Specified by:
postInit
in interfaceProviderFactory<InfinispanSingleUseObjectProvider>
-
close
public void close()Description copied from interface:ProviderFactory
This is called when the server shuts down.- Specified by:
close
in interfaceProviderFactory<InfinispanSingleUseObjectProvider>
-
getId
- Specified by:
getId
in interfaceProviderFactory<InfinispanSingleUseObjectProvider>
-
order
public int order()- Specified by:
order
in interfaceProviderFactory<InfinispanSingleUseObjectProvider>
-
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
.
-
getOperationalInfo
Description copied from interface:ServerInfoAwareProviderFactory
Return actual info about the provider. This info contains information about provider's configuration and operational conditions (eg. errors in connection to remote systems etc) which is shown on "Server Info" page then.- Specified by:
getOperationalInfo
in interfaceServerInfoAwareProviderFactory
- Returns:
- Map with keys describing value and relevant values itself
-
getConfigMetadata
Description copied from interface:ProviderFactory
Returns the metadata for each configuration property supported by this factory.- Specified by:
getConfigMetadata
in interfaceProviderFactory<InfinispanSingleUseObjectProvider>
- Returns:
- a list with the metadata for each configuration property supported by this factory
-