Class DeleteCredentialAction
java.lang.Object
org.keycloak.authentication.requiredactions.DeleteCredentialAction
- All Implemented Interfaces:
CredentialAction
,RequiredActionFactory
,RequiredActionProvider
,Provider
,ProviderFactory<RequiredActionProvider>
public class DeleteCredentialAction
extends Object
implements RequiredActionProvider, RequiredActionFactory, CredentialAction
- Author:
- Marek Posolda
-
Field Summary
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
close()
This is called when the server shuts down.create
(KeycloakSession session) void
evaluateTriggers
(RequiredActionContext context) Called every time a user authenticates.getCredentialType
(KeycloakSession session, AuthenticationSessionModel authenticationSession) Display text used in admin console to reference this required actiongetId()
void
init
(Config.Scope config) Only called once when the factory is first created.Determines what type of support is provided for application-initiated actions.void
postInit
(KeycloakSessionFactory factory) Called after all provider factories have been initializedvoid
processAction
(RequiredActionContext context) Called when a required action has form input you want to process.void
If the user has a required action set, this method will be the initial call to obtain what to display to the user's browser.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface org.keycloak.provider.ProviderFactory
getConfigMetadata, order
Methods inherited from interface org.keycloak.authentication.RequiredActionFactory
isConfigurable, isOneTimeAction, validateConfig
Methods inherited from interface org.keycloak.authentication.RequiredActionProvider
getMaxAuthAge, initiatedActionCanceled
-
Field Details
-
PROVIDER_ID
- See Also:
-
-
Constructor Details
-
DeleteCredentialAction
public DeleteCredentialAction()
-
-
Method Details
-
create
- Specified by:
create
in interfaceProviderFactory<RequiredActionProvider>
-
initiatedActionSupport
Description copied from interface:RequiredActionProvider
Determines what type of support is provided for application-initiated actions.- Specified by:
initiatedActionSupport
in interfaceRequiredActionProvider
- Returns:
- InititatedActionsSupport
-
init
Description copied from interface:ProviderFactory
Only called once when the factory is first created. This config is pulled from keycloak_server.json- Specified by:
init
in interfaceProviderFactory<RequiredActionProvider>
-
postInit
Description copied from interface:ProviderFactory
Called after all provider factories have been initialized- Specified by:
postInit
in interfaceProviderFactory<RequiredActionProvider>
-
getId
- Specified by:
getId
in interfaceProviderFactory<RequiredActionProvider>
-
evaluateTriggers
Description copied from interface:RequiredActionProvider
Called 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:
evaluateTriggers
in interfaceRequiredActionProvider
-
getCredentialType
public String getCredentialType(KeycloakSession session, AuthenticationSessionModel authenticationSession) - Specified by:
getCredentialType
in interfaceCredentialAction
- Returns:
- credential type, which this action is able to register. This should refer to the same value as returned by
CredentialProvider.getType()
of the corresponding credential provider andConfigurableAuthenticatorFactory.getReferenceCategory()
of the corresponding authenticator
-
requiredActionChallenge
Description copied from interface:RequiredActionProvider
If 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:
requiredActionChallenge
in interfaceRequiredActionProvider
-
processAction
Description copied from interface:RequiredActionProvider
Called when a required action has form input you want to process.- Specified by:
processAction
in interfaceRequiredActionProvider
-
getDisplayText
Description copied from interface:RequiredActionFactory
Display text used in admin console to reference this required action- Specified by:
getDisplayText
in interfaceRequiredActionFactory
- Returns:
-
close
public void close()Description copied from interface:ProviderFactory
This is called when the server shuts down.- Specified by:
close
in interfaceProvider
- Specified by:
close
in interfaceProviderFactory<RequiredActionProvider>
-