keycloak
|
クラス | |
enum | org.keycloak.authentication.FlowStatus |
パッケージ | |
package | org.keycloak.authentication |
enum org::keycloak::authentication::FlowStatus |
Status of an execution/authenticator in a Authentication Flow
列挙値 | ATTEMPTED |
This is not an error condition. Execution was attempted, but the authenticator is unable to process the request. An example of this is if a Kerberos authenticator did not see a negotiate header. There was no error, but the execution was attempted. |
CHALLENGE |
Execution offered a challenge. Optional executions will ignore this challenge. Alternative executions may ignore the challenge depending on the status of other executions in the flow. |
FAILED |
Flow will be aborted. |
FAILURE_CHALLENGE |
Flow will be aborted and a Response provided by the execution will be sent. |
FLOW_RESET |
This flow was reset to the beginning. An example is hitting cancel on the OTP page which will bring you back to the username password page. |
FORCE_CHALLENGE |
Irregardless of the execution's requirement, this challenge will be sent to the user. |
FORK |
This flow is being forked. The current authentication session is being cloned, reset, and redirected to browser login. |
SUCCESS |
Successful execution |
---|