Class RemoteLoadBalancerCheckProviderFactory
java.lang.Object
org.keycloak.connections.infinispan.remote.RemoteLoadBalancerCheckProviderFactory
- All Implemented Interfaces:
LoadBalancerCheckProviderFactory
,EnvironmentDependentProviderFactory
,ProviderFactory<LoadBalancerCheckProvider>
public class RemoteLoadBalancerCheckProviderFactory
extends Object
implements LoadBalancerCheckProviderFactory, EnvironmentDependentProviderFactory
-
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.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 initialized
-
Constructor Details
-
RemoteLoadBalancerCheckProviderFactory
public RemoteLoadBalancerCheckProviderFactory()
-
-
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<LoadBalancerCheckProvider>
-
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<LoadBalancerCheckProvider>
-
postInit
Description copied from interface:ProviderFactory
Called after all provider factories have been initialized- Specified by:
postInit
in interfaceProviderFactory<LoadBalancerCheckProvider>
-
close
public void close()Description copied from interface:ProviderFactory
This is called when the server shuts down.- Specified by:
close
in interfaceProviderFactory<LoadBalancerCheckProvider>
-
getId
- Specified by:
getId
in interfaceProviderFactory<LoadBalancerCheckProvider>
-
order
public int order()- Specified by:
order
in interfaceProviderFactory<LoadBalancerCheckProvider>
-
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<LoadBalancerCheckProvider>
-
getConfigMetadata
Description copied from interface:ProviderFactory
Returns the metadata for each configuration property supported by this factory.- Specified by:
getConfigMetadata
in interfaceProviderFactory<LoadBalancerCheckProvider>
- Returns:
- a list with the metadata for each configuration property supported by this factory
-