Package org.keycloak.credential
Interface CredentialProviderFactory<T extends CredentialProvider>
-
- All Superinterfaces:
ProviderFactory<CredentialProvider>
public interface CredentialProviderFactory<T extends CredentialProvider> extends ProviderFactory<CredentialProvider>
- Version:
- $Revision: 1 $
- Author:
- Bill Burke
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default voidclose()StringgetId()This is the name of the provider and will be showed in the admin console as an option.default voidinit(Config.Scope config)default voidpostInit(KeycloakSessionFactory factory)-
Methods inherited from interface org.keycloak.provider.ProviderFactory
create, getConfigMetadata, order
-
-
-
-
Method Detail
-
getId
String getId()
This is the name of the provider and will be showed in the admin console as an option.- Specified by:
getIdin interfaceProviderFactory<T extends CredentialProvider>- Returns:
-
init
default void init(Config.Scope config)
- Specified by:
initin interfaceProviderFactory<T extends CredentialProvider>
-
postInit
default void postInit(KeycloakSessionFactory factory)
- Specified by:
postInitin interfaceProviderFactory<T extends CredentialProvider>
-
close
default void close()
- Specified by:
closein interfaceProviderFactory<T extends CredentialProvider>
-
-