Class AbstractClientAuthenticator
- java.lang.Object
- 
- org.keycloak.authentication.authenticators.client.AbstractClientAuthenticator
 
- 
- All Implemented Interfaces:
- ClientAuthenticator,- ClientAuthenticatorFactory,- ConfigurableAuthenticatorFactory,- ConfiguredProvider,- Provider,- ProviderFactory<ClientAuthenticator>
 - Direct Known Subclasses:
- ClientIdAndSecretAuthenticator,- JWTClientAuthenticator,- JWTClientSecretAuthenticator,- X509ClientAuthenticator
 
 public abstract class AbstractClientAuthenticator extends Object implements ClientAuthenticator, ClientAuthenticatorFactory - Author:
- Marek Posolda
 
- 
- 
Field Summary- 
Fields inherited from interface org.keycloak.authentication.ConfigurableAuthenticatorFactoryREQUIREMENT_CHOICES
 
- 
 - 
Constructor SummaryConstructors Constructor Description AbstractClientAuthenticator()
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description voidclose()This is called when the server shuts down.ClientAuthenticatorcreate()ClientAuthenticatorcreate(KeycloakSession session)StringgetReferenceCategory()General authenticator type, i.e.voidinit(Config.Scope config)Only called once when the factory is first created.protected booleanisFormDataRequest(HttpRequest request)booleanisUserSetupAllowed()Does this authenticator have required actions that can set if the user does not have this authenticator set up?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.authentication.ClientAuthenticatorauthenticateClient
 - 
Methods inherited from interface org.keycloak.authentication.ClientAuthenticatorFactorygetAdapterConfiguration, getConfigPropertiesPerClient, getProtocolAuthenticatorMethods, isConfigurable, supportsSecret
 - 
Methods inherited from interface org.keycloak.authentication.ConfigurableAuthenticatorFactorygetDisplayType, getRequirementChoices
 - 
Methods inherited from interface org.keycloak.provider.ConfiguredProvidergetConfig, getConfigProperties, getHelpText
 - 
Methods inherited from interface org.keycloak.provider.ProviderFactorygetConfigMetadata, getId, order
 
- 
 
- 
- 
- 
Method Detail- 
createpublic ClientAuthenticator create() - Specified by:
- createin interface- ClientAuthenticatorFactory
 
 - 
closepublic void close() Description copied from interface:ProviderFactoryThis is called when the server shuts down.- Specified by:
- closein interface- Provider
- Specified by:
- closein interface- ProviderFactory<ClientAuthenticator>
 
 - 
createpublic ClientAuthenticator create(KeycloakSession session) - Specified by:
- createin interface- ProviderFactory<ClientAuthenticator>
 
 - 
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<ClientAuthenticator>
 
 - 
postInitpublic void postInit(KeycloakSessionFactory factory) Description copied from interface:ProviderFactoryCalled after all provider factories have been initialized- Specified by:
- postInitin interface- ProviderFactory<ClientAuthenticator>
 
 - 
isUserSetupAllowedpublic boolean isUserSetupAllowed() Description copied from interface:ConfigurableAuthenticatorFactoryDoes this authenticator have required actions that can set if the user does not have this authenticator set up?- Specified by:
- isUserSetupAllowedin interface- ConfigurableAuthenticatorFactory
- Returns:
 
 - 
getReferenceCategorypublic String getReferenceCategory() Description copied from interface:ConfigurableAuthenticatorFactoryGeneral authenticator type, i.e. totp, password, cert.- Specified by:
- getReferenceCategoryin interface- ConfigurableAuthenticatorFactory
- Returns:
- null if not a referencable category
 
 - 
isFormDataRequestprotected boolean isFormDataRequest(HttpRequest request) 
 
- 
 
-