Package org.keycloak.federation.sssd
Class SSSDFederationProviderFactory
java.lang.Object
org.keycloak.federation.sssd.SSSDFederationProviderFactory
- All Implemented Interfaces:
ComponentFactory<SSSDFederationProvider,
,UserStorageProvider> ConfiguredProvider
,EnvironmentDependentProviderFactory
,ProviderFactory<UserStorageProvider>
,UserStorageProviderFactory<SSSDFederationProvider>
public class SSSDFederationProviderFactory
extends Object
implements UserStorageProviderFactory<SSSDFederationProvider>, EnvironmentDependentProviderFactory
- Version:
- $Revision: 1 $
- Author:
- Bruno Oliveira
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
close()
This is called when the server shuts down.create
(KeycloakSession session, ComponentModel model) called per Keycloak transaction.protected PAMAuthenticator
createPAMAuthenticator
(String username, String... factors) protected org.freedesktop.dbus.connections.impl.DBusConnection
getId()
This is the name of the provider and will be showed in the admin console as an option.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.component.ComponentFactory
create, onUpdate, preRemove
Methods inherited from interface org.keycloak.provider.ConfiguredProvider
getConfig
Methods inherited from interface org.keycloak.provider.ProviderFactory
getConfigMetadata, order
Methods inherited from interface org.keycloak.storage.UserStorageProviderFactory
getCommonProviderConfigProperties, getConfigProperties, getHelpText, getTypeMetadata, onCreate, validateConfiguration
-
Constructor Details
-
SSSDFederationProviderFactory
public SSSDFederationProviderFactory()
-
-
Method Details
-
getId
Description copied from interface:UserStorageProviderFactory
This is the name of the provider and will be showed in the admin console as an option.- Specified by:
getId
in interfaceProviderFactory<UserStorageProvider>
- Specified by:
getId
in interfaceUserStorageProviderFactory<SSSDFederationProvider>
-
create
Description copied from interface:UserStorageProviderFactory
called per Keycloak transaction.- Specified by:
create
in interfaceComponentFactory<SSSDFederationProvider,
UserStorageProvider> - Specified by:
create
in interfaceUserStorageProviderFactory<SSSDFederationProvider>
-
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<UserStorageProvider>
- Specified by:
init
in interfaceUserStorageProviderFactory<SSSDFederationProvider>
-
postInit
Description copied from interface:ProviderFactory
Called after all provider factories have been initialized- Specified by:
postInit
in interfaceProviderFactory<UserStorageProvider>
- Specified by:
postInit
in interfaceUserStorageProviderFactory<SSSDFederationProvider>
-
close
public void close()Description copied from interface:ProviderFactory
This is called when the server shuts down.- Specified by:
close
in interfaceProviderFactory<UserStorageProvider>
- Specified by:
close
in interfaceUserStorageProviderFactory<SSSDFederationProvider>
-
createPAMAuthenticator
-
getDbusConnection
protected org.freedesktop.dbus.connections.impl.DBusConnection getDbusConnection() -
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
.
-