Class ValidatePassword
java.lang.Object
org.keycloak.authentication.authenticators.directgrant.AbstractDirectGrantAuthenticator
org.keycloak.authentication.authenticators.directgrant.ValidatePassword
- All Implemented Interfaces:
- Authenticator,- AuthenticatorFactory,- ConfigurableAuthenticatorFactory,- ConfiguredProvider,- Provider,- ProviderFactory<Authenticator>
- Version:
- $Revision: 1 $
- Author:
- Bill Burke
- 
Field SummaryFieldsFields inherited from interface org.keycloak.authentication.ConfigurableAuthenticatorFactoryREQUIREMENT_CHOICES
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionvoidauthenticate(AuthenticationFlowContext context) Initial call for the authenticator.booleanconfiguredFor(KeycloakSession session, RealmModel realm, UserModel user) Is this authenticator configured for this user.Friendly name for the authenticatorgetId()General authenticator type, i.e.What requirement settings are allowed.booleanIs this authenticator configurable?booleanDoes this authenticator have required actions that can set if the user does not have this authenticator set up?booleanDoes this authenticator require that the user has already been identified? That AuthenticatorContext.getUser() is not null?protected StringvoidsetRequiredActions(KeycloakSession session, RealmModel realm, UserModel user) Set actions to configure authenticatorMethods inherited from class org.keycloak.authentication.authenticators.directgrant.AbstractDirectGrantAuthenticatoraction, close, create, errorResponse, init, postInitMethods inherited from class java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.keycloak.authentication.AuthenticatorareRequiredActionsEnabled, getRequiredActionsMethods inherited from interface org.keycloak.provider.ConfiguredProvidergetConfigMethods inherited from interface org.keycloak.provider.ProviderFactorygetConfigMetadata, order
- 
Field Details- 
PROVIDER_ID- See Also:
 
 
- 
- 
Constructor Details- 
ValidatePasswordpublic ValidatePassword()
 
- 
- 
Method Details- 
authenticateDescription copied from interface:AuthenticatorInitial call for the authenticator. This method should check the current HTTP request to determine if the request satifies the Authenticator's requirements. If it doesn't, it should send back a challenge response by calling the AuthenticationFlowContext.challenge(Response). If this challenge is a authentication, the action URL of the form must point to /realms/{realm}/login-actions/authenticate?code={session-code}&execution={executionId} or /realms/{realm}/login-actions/registration?code={session-code}&execution={executionId} {session-code} pertains to the code generated from AuthenticationFlowContext.generateAccessCode(). The {executionId} pertains to the AuthenticationExecutionModel.getId() value obtained from AuthenticationFlowContext.getExecution(). The action URL will invoke the action() method described below.
- 
requiresUserpublic boolean requiresUser()Description copied from interface:AuthenticatorDoes this authenticator require that the user has already been identified? That AuthenticatorContext.getUser() is not null?- Returns:
 
- 
configuredForDescription copied from interface:AuthenticatorIs this authenticator configured for this user.- Returns:
 
- 
setRequiredActionsDescription copied from interface:AuthenticatorSet actions to configure authenticator
- 
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?- Returns:
 
- 
getDisplayTypeDescription copied from interface:ConfigurableAuthenticatorFactoryFriendly name for the authenticator- Returns:
 
- 
getReferenceCategoryDescription copied from interface:ConfigurableAuthenticatorFactoryGeneral authenticator type, i.e. totp, password, cert.- Returns:
- null if not a referencable category
 
- 
isConfigurablepublic boolean isConfigurable()Description copied from interface:ConfigurableAuthenticatorFactoryIs this authenticator configurable?- Returns:
 
- 
getRequirementChoicesDescription copied from interface:ConfigurableAuthenticatorFactoryWhat requirement settings are allowed.- Returns:
 
- 
getHelpText
- 
getConfigProperties
- 
getId
- 
retrievePassword
 
-