Package com.sun.identity.authentication
Class AuthContext.Status
- java.lang.Object
-
- com.sun.identity.authentication.AuthContext.Status
-
- Enclosing class:
- AuthContext
@SupportedAll public static class AuthContext.Status extends Object
The classStatus
defines the possible authentication states during the login process.
-
-
Field Summary
Fields Modifier and Type Field Description static AuthContext.Status
COMPLETED
TheCOMPLETED
indicates that the user has been successfully logged out.static AuthContext.Status
FAILED
TheFAILED
indicates that the login process has failed.static AuthContext.Status
IN_PROGRESS
TheIN_PROGRESS
status indicates that the login process is in progress.static AuthContext.Status
NOT_STARTED
TheNOT_STARTED
status indicates that the login process has not yet started.static AuthContext.Status
ORG_MISMATCH
TheORG_MISMATCH
indicates that the frameworkorg
and theorg
required by the user do not match.static AuthContext.Status
RESET
TheRESET
indicates that the login process has been reset or re-initialized.static AuthContext.Status
SUCCESS
TheSUCCESS
indicates that the login process has succeeded.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object authStatus)
Checks if two authentication status objects are equal.int
hashCode()
String
toString()
Returns the string representation of the authentication status.
-
-
-
Field Detail
-
NOT_STARTED
public static final AuthContext.Status NOT_STARTED
TheNOT_STARTED
status indicates that the login process has not yet started. Basically, it means that the methodlogin
has not been called.
-
IN_PROGRESS
public static final AuthContext.Status IN_PROGRESS
TheIN_PROGRESS
status indicates that the login process is in progress. Basically, it means that thelogin
method has been called and that this object is waiting for the user to send authentication information.
-
SUCCESS
public static final AuthContext.Status SUCCESS
TheSUCCESS
indicates that the login process has succeeded.
-
FAILED
public static final AuthContext.Status FAILED
TheFAILED
indicates that the login process has failed.
-
COMPLETED
public static final AuthContext.Status COMPLETED
TheCOMPLETED
indicates that the user has been successfully logged out.
-
RESET
public static final AuthContext.Status RESET
TheRESET
indicates that the login process has been reset or re-initialized.
-
ORG_MISMATCH
public static final AuthContext.Status ORG_MISMATCH
TheORG_MISMATCH
indicates that the frameworkorg
and theorg
required by the user do not match.
-
-