Class WebAuthnRegisterFactory
- java.lang.Object
- 
- org.keycloak.authentication.requiredactions.WebAuthnRegisterFactory
 
- 
- All Implemented Interfaces:
- RequiredActionFactory,- EnvironmentDependentProviderFactory,- ProviderFactory<RequiredActionProvider>
 - Direct Known Subclasses:
- WebAuthnPasswordlessRegisterFactory
 
 public class WebAuthnRegisterFactory extends Object implements RequiredActionFactory, EnvironmentDependentProviderFactory 
- 
- 
Field SummaryFields Modifier and Type Field Description static StringPROVIDER_ID
 - 
Constructor SummaryConstructors Constructor Description WebAuthnRegisterFactory()
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description voidclose()This is called when the server shuts down.RequiredActionProvidercreate(KeycloakSession session)protected WebAuthnRegistercreateProvider(KeycloakSession session, com.webauthn4j.validator.attestation.trustworthiness.certpath.CertPathTrustworthinessValidator trustValidator)StringgetDisplayText()Display text used in admin console to reference this required actionStringgetId()voidinit(Config.Scope config)Only called once when the factory is first created.booleanisSupported()voidpostInit(KeycloakSessionFactory factory)Called after all provider factories have been initialized- 
Methods inherited from class java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 - 
Methods inherited from interface org.keycloak.provider.EnvironmentDependentProviderFactoryisSupported
 - 
Methods inherited from interface org.keycloak.provider.ProviderFactorygetConfigMetadata, order
 - 
Methods inherited from interface org.keycloak.authentication.RequiredActionFactoryisOneTimeAction
 
- 
 
- 
- 
- 
Field Detail- 
PROVIDER_IDpublic static final String PROVIDER_ID - See Also:
- Constant Field Values
 
 
- 
 - 
Method Detail- 
createpublic RequiredActionProvider create(KeycloakSession session) - Specified by:
- createin interface- ProviderFactory<RequiredActionProvider>
 
 - 
createProviderprotected WebAuthnRegister createProvider(KeycloakSession session, com.webauthn4j.validator.attestation.trustworthiness.certpath.CertPathTrustworthinessValidator trustValidator) 
 - 
initpublic void init(Config.Scope config) Description copied from interface:ProviderFactoryOnly called once when the factory is first created. This config is pulled from keycloak_server.json- Specified by:
- initin interface- ProviderFactory<RequiredActionProvider>
 
 - 
postInitpublic void postInit(KeycloakSessionFactory factory) Description copied from interface:ProviderFactoryCalled after all provider factories have been initialized- Specified by:
- postInitin interface- ProviderFactory<RequiredActionProvider>
 
 - 
closepublic void close() Description copied from interface:ProviderFactoryThis is called when the server shuts down.- Specified by:
- closein interface- ProviderFactory<RequiredActionProvider>
 
 - 
getIdpublic String getId() - Specified by:
- getIdin interface- ProviderFactory<RequiredActionProvider>
 
 - 
getDisplayTextpublic String getDisplayText() Description copied from interface:RequiredActionFactoryDisplay text used in admin console to reference this required action- Specified by:
- getDisplayTextin interface- RequiredActionFactory
- Returns:
 
 - 
isSupportedpublic boolean isSupported() - Specified by:
- isSupportedin interface- EnvironmentDependentProviderFactory
- Returns:
- trueif the provider is supported and should be available,- falseotherwise
 
 
- 
 
-