keycloak-spi-private
|
公開メンバ関数 | |
void | evaluateTriggers (RequiredActionContext context) |
void | requiredActionChallenge (RequiredActionContext context) |
void | processAction (RequiredActionContext context) |
RequiredAction provider. Required actions are one-time actions that a user must perform before they are logged in.
void org.keycloak.authentication.RequiredActionProvider.evaluateTriggers | ( | RequiredActionContext | context | ) |
Called every time a uesr 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.
context |
void org.keycloak.authentication.RequiredActionProvider.processAction | ( | RequiredActionContext | context | ) |
Called when a required action has form input you want to process.
context |
void org.keycloak.authentication.RequiredActionProvider.requiredActionChallenge | ( | RequiredActionContext | context | ) |
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.
context |