public static class AuthContext.Status extends Object
Status
defines the possible
authentication states during the login process.Modifier and Type | Field and Description |
---|---|
static AuthContext.Status |
COMPLETED
The
COMPLETED indicates that the user has been
successfully logged out. |
static AuthContext.Status |
FAILED
The
FAILED indicates that the login process has failed. |
static AuthContext.Status |
IN_PROGRESS
The
IN_PROGRESS status indicates that the login process
is in progress. |
static AuthContext.Status |
NOT_STARTED
The
NOT_STARTED status indicates that the login process
has not yet started. |
static AuthContext.Status |
ORG_MISMATCH
The
ORG_MISMATCH indicates that the framework
org and the org required by the user do
not match. |
static AuthContext.Status |
RESET
The
RESET indicates that the login process has been
reset or re-initialized. |
static AuthContext.Status |
SUCCESS
The
SUCCESS indicates that the login process has
succeeded. |
Modifier and Type | Method and Description |
---|---|
boolean |
equals(Object authStatus)
Checks if two authentication status objects are equal.
|
String |
toString()
Returns the string representation of the authentication status.
|
public static final AuthContext.Status NOT_STARTED
NOT_STARTED
status indicates that the login process
has not yet started. Basically, it means that the method
login
has not been called.public static final AuthContext.Status IN_PROGRESS
IN_PROGRESS
status indicates that the login process
is in progress. Basically, it means that the login
method has been called and that this object is waiting for the user
to send authentication information.public static final AuthContext.Status SUCCESS
SUCCESS
indicates that the login process has
succeeded.public static final AuthContext.Status FAILED
FAILED
indicates that the login process has failed.public static final AuthContext.Status COMPLETED
COMPLETED
indicates that the user has been
successfully logged out.public static final AuthContext.Status RESET
RESET
indicates that the login process has been
reset or re-initialized.public static final AuthContext.Status ORG_MISMATCH
ORG_MISMATCH
indicates that the framework
org
and the org
required by the user do
not match.public String toString()
Copyright © 2010–2025 Open Identity Platform Community. All rights reserved.