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 classStatusdefines the possible authentication states during the login process. 
- 
- 
Field Summary
Fields Modifier and Type Field Description static AuthContext.StatusCOMPLETEDTheCOMPLETEDindicates that the user has been successfully logged out.static AuthContext.StatusFAILEDTheFAILEDindicates that the login process has failed.static AuthContext.StatusIN_PROGRESSTheIN_PROGRESSstatus indicates that the login process is in progress.static AuthContext.StatusNOT_STARTEDTheNOT_STARTEDstatus indicates that the login process has not yet started.static AuthContext.StatusORG_MISMATCHTheORG_MISMATCHindicates that the frameworkorgand theorgrequired by the user do not match.static AuthContext.StatusRESETTheRESETindicates that the login process has been reset or re-initialized.static AuthContext.StatusSUCCESSTheSUCCESSindicates that the login process has succeeded. 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object authStatus)Checks if two authentication status objects are equal.inthashCode()StringtoString()Returns the string representation of the authentication status. 
 - 
 
- 
- 
Field Detail
- 
NOT_STARTED
public static final AuthContext.Status NOT_STARTED
TheNOT_STARTEDstatus indicates that the login process has not yet started. Basically, it means that the methodloginhas not been called. 
- 
IN_PROGRESS
public static final AuthContext.Status IN_PROGRESS
TheIN_PROGRESSstatus indicates that the login process is in progress. Basically, it means that theloginmethod has been called and that this object is waiting for the user to send authentication information. 
- 
SUCCESS
public static final AuthContext.Status SUCCESS
TheSUCCESSindicates that the login process has succeeded. 
- 
FAILED
public static final AuthContext.Status FAILED
TheFAILEDindicates that the login process has failed. 
- 
COMPLETED
public static final AuthContext.Status COMPLETED
TheCOMPLETEDindicates that the user has been successfully logged out. 
- 
RESET
public static final AuthContext.Status RESET
TheRESETindicates that the login process has been reset or re-initialized. 
- 
ORG_MISMATCH
public static final AuthContext.Status ORG_MISMATCH
TheORG_MISMATCHindicates that the frameworkorgand theorgrequired by the user do not match. 
 - 
 
 -