Class UpdateEmail
java.lang.Object
org.keycloak.authentication.requiredactions.UpdateEmail
- All Implemented Interfaces:
RequiredActionFactory,RequiredActionProvider,EnvironmentDependentProviderFactory,Provider,ProviderFactory<RequiredActionProvider>
public class UpdateEmail
extends Object
implements RequiredActionProvider, RequiredActionFactory, EnvironmentDependentProviderFactory
-
Field Summary
Fields inherited from interface org.keycloak.authentication.RequiredActionFactory
MAX_AUTH_AGE_CONFIG_PROPERTIES -
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()intgetMaxAuthAge(KeycloakSession session) Defines 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.booleanisSupported(Config.Scope config) Check if the provider is supported and should be available based on the provider configuration.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.static voidupdateEmailNow(EventBuilder event, UserModel user, UserProfile emailUpdateValidationResult) static UserProfilevalidateEmailUpdate(KeycloakSession session, UserModel user, String newEmail) 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
isConfigurable, isOneTimeAction, validateConfigMethods inherited from interface org.keycloak.authentication.RequiredActionProvider
getMaxAuthAge, initiatedActionCanceled
-
Constructor Details
-
UpdateEmail
public UpdateEmail()
-
-
Method Details
-
initiatedActionSupport
Description copied from interface:RequiredActionProviderDetermines what type of support is provided for application-initiated actions.- Specified by:
initiatedActionSupportin interfaceRequiredActionProvider- Returns:
- InititatedActionsSupport
-
getDisplayText
Description copied from interface:RequiredActionFactoryDisplay text used in admin console to reference this required action- Specified by:
getDisplayTextin interfaceRequiredActionFactory- Returns:
-
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
-
validateEmailUpdate
public static UserProfile validateEmailUpdate(KeycloakSession session, UserModel user, String newEmail) -
updateEmailNow
public static void updateEmailNow(EventBuilder event, UserModel user, UserProfile emailUpdateValidationResult) -
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>
-
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>
-
getId
- Specified by:
getIdin interfaceProviderFactory<RequiredActionProvider>
-
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. On default uses configured max_auth_age value from the required action config. If not configured, it uses the default max_auth_age value from the KeycloakConstants class.- 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>- Specified by:
getConfigMetadatain interfaceRequiredActionFactory- Returns:
- a list with the metadata for each configuration property supported by this factory
-
isSupported
Description copied from interface:EnvironmentDependentProviderFactoryCheck if the provider is supported and should be available based on the provider configuration.- Specified by:
isSupportedin interfaceEnvironmentDependentProviderFactory- Parameters:
config- the provider configuration- Returns:
trueif the provider is supported. Otherwise,false.
-