Package org.keycloak.authentication.otp
Interface OTPApplicationProviderFactory
-
- All Superinterfaces:
ProviderFactory<OTPApplicationProvider>
- All Known Implementing Classes:
FreeOTPProvider
,GoogleAuthenticatorProvider
,MicrosoftAuthenticatorOTPProvider
public interface OTPApplicationProviderFactory extends ProviderFactory<OTPApplicationProvider>
-
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default void
init(Config.Scope config)
Only called once when the factory is first created.default void
postInit(KeycloakSessionFactory factory)
Called after all provider factories have been initialized-
Methods inherited from interface org.keycloak.provider.ProviderFactory
close, create, getConfigMetadata, getId, order
-
-
-
-
Method Detail
-
init
default void init(Config.Scope config)
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<OTPApplicationProvider>
-
postInit
default void postInit(KeycloakSessionFactory factory)
Description copied from interface:ProviderFactory
Called after all provider factories have been initialized- Specified by:
postInit
in interfaceProviderFactory<OTPApplicationProvider>
-
-