Class UpdatePassword
java.lang.Object
org.keycloak.authentication.requiredactions.UpdatePassword
- All Implemented Interfaces:
RequiredActionFactory,RequiredActionProvider,Provider,ProviderFactory<RequiredActionProvider>
- Version:
- $Revision: 1 $
- Author:
- Bill Burke
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidclose()This is called when the server shuts down.create(KeycloakSession session) voidevaluateTriggers(RequiredActionContext context) Called every time a user authenticates.Returns the metadata for each configuration property supported by this factory.Display text used in admin console to reference this required actiongetId()intDefines the max time after a user login, after which re-authentication is requested for an AIA.voidinit(Config.Scope config) Only called once when the factory is first created.Determines what type of support is provided for application-initiated actions.booleanFlag indicating whether the execution of the required action by the same circumstances (e.g.voidpostInit(KeycloakSessionFactory factory) Called after all provider factories have been initializedvoidprocessAction(RequiredActionContext context) Called when a required action has form input you want to process.voidIf the user has a required action set, this method will be the initial call to obtain what to display to the user's browser.voidvalidateConfig(KeycloakSession session, RealmModel realm, RequiredActionConfigModel model) Allows users to validate the provided configuration for this required action.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.keycloak.provider.ProviderFactory
dependsOn, orderMethods inherited from interface org.keycloak.authentication.RequiredActionFactory
isConfigurableMethods inherited from interface org.keycloak.authentication.RequiredActionProvider
initiatedActionCanceled
-
Field Details
-
MAX_AUTH_AGE_KEY
- See Also:
-
-
Constructor Details
-
UpdatePassword
Deprecated.useUpdatePassword(KeycloakSession)instead -
UpdatePassword
-
-
Method Details
-
initiatedActionSupport
Description copied from interface:RequiredActionProviderDetermines what type of support is provided for application-initiated actions.- Specified by:
initiatedActionSupportin interfaceRequiredActionProvider- Returns:
- InititatedActionsSupport
-
evaluateTriggers
Description copied from interface:RequiredActionProviderCalled every time a user authenticates. This checks to see if this required action should be triggered. The implementation of this method is responsible for setting the required action on the UserModel. For example, the UpdatePassword required actions checks the password policies to see if the password has expired.- Specified by:
evaluateTriggersin interfaceRequiredActionProvider
-
requiredActionChallenge
Description copied from interface:RequiredActionProviderIf the user has a required action set, this method will be the initial call to obtain what to display to the user's browser. Return null if no action should be done.- Specified by:
requiredActionChallengein interfaceRequiredActionProvider
-
processAction
Description copied from interface:RequiredActionProviderCalled when a required action has form input you want to process.- Specified by:
processActionin interfaceRequiredActionProvider
-
close
public void close()Description copied from interface:ProviderFactoryThis is called when the server shuts down.- Specified by:
closein interfaceProvider- Specified by:
closein interfaceProviderFactory<RequiredActionProvider>
-
create
- Specified by:
createin interfaceProviderFactory<RequiredActionProvider>
-
init
Description copied from interface:ProviderFactoryOnly called once when the factory is first created. This config is pulled from keycloak_server.json- Specified by:
initin interfaceProviderFactory<RequiredActionProvider>
-
postInit
Description copied from interface:ProviderFactoryCalled after all provider factories have been initialized- Specified by:
postInitin interfaceProviderFactory<RequiredActionProvider>
-
getDisplayText
Description copied from interface:RequiredActionFactoryDisplay text used in admin console to reference this required action- Specified by:
getDisplayTextin interfaceRequiredActionFactory- Returns:
-
getId
- Specified by:
getIdin interfaceProviderFactory<RequiredActionProvider>
-
isOneTimeAction
public boolean isOneTimeAction()Description copied from interface:RequiredActionFactoryFlag indicating whether the execution of the required action by the same circumstances (e.g. by one and the same action token) should only be permitted once.- Specified by:
isOneTimeActionin interfaceRequiredActionFactory- Returns:
-
getMaxAuthAge
public int getMaxAuthAge()Description copied from interface:RequiredActionProviderDefines the max time after a user login, after which re-authentication is requested for an AIA. 0 means that re-authentication is always requested.- Specified by:
getMaxAuthAgein interfaceRequiredActionProvider
-
getConfigMetadata
Description copied from interface:ProviderFactoryReturns the metadata for each configuration property supported by this factory.- Specified by:
getConfigMetadatain interfaceProviderFactory<RequiredActionProvider>- Returns:
- a list with the metadata for each configuration property supported by this factory
-
validateConfig
public void validateConfig(KeycloakSession session, RealmModel realm, RequiredActionConfigModel model) Description copied from interface:RequiredActionFactoryAllows users to validate the provided configuration for this required action. Users can throw aModelValidationExceptionto indicate that the configuration is invalid.- Specified by:
validateConfigin interfaceRequiredActionFactory
-
UpdatePassword(KeycloakSession)instead