Class DefaultCacheRemoteConfigProviderFactory
java.lang.Object
org.keycloak.spi.infinispan.impl.remote.DefaultCacheRemoteConfigProviderFactory
- All Implemented Interfaces:
EnvironmentDependentProviderFactory
,Provider
,ProviderFactory<CacheRemoteConfigProvider>
,CacheRemoteConfigProvider
,CacheRemoteConfigProviderFactory
public class DefaultCacheRemoteConfigProviderFactory
extends Object
implements CacheRemoteConfigProviderFactory, CacheRemoteConfigProvider, EnvironmentDependentProviderFactory
The default implementation for
CacheRemoteConfigProviderFactory
and CacheRemoteConfigProvider
.
It is used when an external Infinispan cluster is enabled.
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
close()
This is called when the server shuts down.Optional<org.infinispan.client.hotrod.configuration.Configuration>
Creates theConfiguration
for the Hot Rod client.create
(KeycloakSession session) protected org.infinispan.client.hotrod.configuration.ConfigurationBuilder
Creates theConfigurationBuilder
.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
postInit
(KeycloakSessionFactory factory) Called after all provider factories have been initializedMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface org.keycloak.provider.ProviderFactory
dependsOn, order
-
Field Details
-
PROVIDER_ID
- See Also:
-
HOSTNAME
- See Also:
-
PORT
- See Also:
-
-
Constructor Details
-
DefaultCacheRemoteConfigProviderFactory
public DefaultCacheRemoteConfigProviderFactory()
-
-
Method Details
-
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
.
-
create
- Specified by:
create
in interfaceProviderFactory<CacheRemoteConfigProvider>
-
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<CacheRemoteConfigProvider>
-
postInit
Description copied from interface:ProviderFactory
Called after all provider factories have been initialized- Specified by:
postInit
in interfaceProviderFactory<CacheRemoteConfigProvider>
-
configuration
Description copied from interface:CacheRemoteConfigProvider
Creates theConfiguration
for the Hot Rod client.The optional signal if a Hot Rod client should be instantiated and started. If present, it assumes an external Infinispan cluster is ready and online, otherwise Keycloak fails to start.
- Specified by:
configuration
in interfaceCacheRemoteConfigProvider
- Returns:
- The
Configuration
for the Hot Rod client.
-
close
public void close()Description copied from interface:ProviderFactory
This is called when the server shuts down.- Specified by:
close
in interfaceCacheRemoteConfigProvider
- Specified by:
close
in interfaceProvider
- Specified by:
close
in interfaceProviderFactory<CacheRemoteConfigProvider>
-
getId
- Specified by:
getId
in interfaceProviderFactory<CacheRemoteConfigProvider>
-
getConfigMetadata
Description copied from interface:ProviderFactory
Returns the metadata for each configuration property supported by this factory.- Specified by:
getConfigMetadata
in interfaceProviderFactory<CacheRemoteConfigProvider>
- Returns:
- a list with the metadata for each configuration property supported by this factory
-
createConfigurationBuilder
protected org.infinispan.client.hotrod.configuration.ConfigurationBuilder createConfigurationBuilder() throws IOExceptionCreates theConfigurationBuilder
.This class is protected if power users need to extend this class for more advanced configuration. Using a properties file is the recommended way to configure the client in more detail. Check
ConfigurationProperties
for property keys.- Returns:
- The
ConfigurationBuilder
. This instance can be modified. - Throws:
IOException
- if an error occurred when reading from the properties file (if configured).- See Also:
-
ConfigurationProperties
-