NOT_STARTED, NOT_STOPPED, UNKNOWN_EXPIRATION| Modifier and Type | Method and Description |
|---|---|
boolean |
browserBasedLogoutAborted()
Determine if the browser based logout was aborted during the un-authentication
process.
|
boolean |
browserBasedLogoutDisallowed()
Determines if the initiator of the un-authentication process set the flag
disallowing browser based logout.
|
boolean |
browserBasedLogoutFailed()
Determine if the browser based logout failed during the un-authentication
process.
|
boolean |
browserBasedLogoutFinished()
Determine if the browser based logout finished during the un-authentication
process.
|
boolean |
browserBasedLogoutInitiated()
Determine if the browser based logout was attempted during the un-authentication
process.
|
boolean |
browserBasedLogoutStarted()
Determine if the browser based logout started during the un-authentication
process.
|
java.util.Collection<java.lang.Exception> |
getBrowserBasedLogoutExceptions()
Get the exception(s) throw during the browser based logout execution.
|
java.util.Collection<java.lang.Exception> |
getTokenRevocationExceptions()
Get the exception(s) throw during the token revocation execution.
|
boolean |
isFailedUnAuthentication()
Determines if the Un-Authentication process was a complete failure.
|
boolean |
isPartialUnAuthentication()
Determines if the Un-Authentication process was a partial failure/success.
|
boolean |
isSuccessfulUnAuthentication()
Determines if the Un-Authentication process was a complete success.
|
boolean |
logoutTimedOut()
Determine if the browser based logout timed out before all required operations
were completed.
|
boolean |
tokenRevocationDisallowed()
Determines if the initiator of the un-authentication process set the flag
disallowing token revocation.
|
boolean |
tokenRevocationInitiated()
Determine if the token revocation was attempted during the un-authentication
process.
|
existsAnyExceptions, getAccessToken, getAccessTokenExpirationTime, getAssociatedProcessUniqueId, getAuthenticatorExceptions, getCreationTime, getDuration, getDurationSinceCreation, getDurationSinceStarted, getDurationSinceStopped, getIdentityProvider, getRefreshToken, getStartTime, getStopTime, isAuthenticated, isStarted, isStoppedboolean browserBasedLogoutInitiated()
If the Identity Provider definition does not include a logout end point, then browser based logout will not be attempted.
This information is probably not essential to the operation of any client implementation, but may be used for monitoring or statistics gathering.
true iff the browser based logout was initiated during
the un-authentication process.boolean browserBasedLogoutStarted()
The Un-Authenticator does not know if the browser based logout was successful in deleting authentication cookies, but it does know if basic browser navigation states were seen.
This information is probably not essential to the operation of any client implementation, but may be used for monitoring or statistics gathering.
true iff the browser based logout was started during
the un-authentication process.boolean browserBasedLogoutFinished()
The Un-Authenticator does not know if the browser based logout was successful in deleting authentication cookies, but it does know if basic browser navigation states were seen.
This information is probably not essential to the operation of any client implementation, but may be used for monitoring or statistics gathering.
true iff the browser based logout was finished during
the un-authentication process.boolean browserBasedLogoutAborted()
The Un-Authenticator does not know if the browser based logout was successful in deleting authentication cookies, but it does know if basic browser navigation states were seen.
This information is probably not essential to the operation of any client implementation, but may be used for monitoring or statistics gathering.
true iff the browser based logout was aborted during
the un-authentication process.boolean browserBasedLogoutFailed()
The Un-Authenticator does not know if the browser based logout was successful in deleting authentication cookies, but it does know if basic browser navigation states were seen.
This information is probably not essential to the operation of any client implementation, but may be used for monitoring or statistics gathering.
true iff the browser based logout failed during
the un-authentication process.java.util.Collection<java.lang.Exception> getBrowserBasedLogoutExceptions()
Collection of Exception instances were thrown during the
browser based logou execution. The existence of an exception indicates that the logout
did not run to successful completion. May be null if no exception exists.boolean tokenRevocationInitiated()
If there is not a refresh token available in the currently persisted authentication data, then token revocation will not be attempted.
This information is probably not essential to the operation of any client implementation, but may be used for monitoring or statistics gathering.
true iff the token revocation was initiated during
the un-authentication process.java.util.Collection<java.lang.Exception> getTokenRevocationExceptions()
Collection of Exception instances were thrown during the
token revocation execution. The existence of an exception indicates that the revocation
did not run to successful completion. May be null if no exception exists.boolean logoutTimedOut()
This information is probably not essential to the operation of any client implementation, but may be used for monitoring or statistics gathering.
true iff the browser based logout timed out before all
required operations were completed.boolean browserBasedLogoutDisallowed()
true iff the un-authentication process was initiated with the flag
disallowing browser based logout set to true.boolean tokenRevocationDisallowed()
true iff the un-authentication process was initiated with the flag
disallowing token revocation set to true.boolean isFailedUnAuthentication()
true iff no aspect of the un-authentication was successful.boolean isPartialUnAuthentication()
true iff at least one aspect of the un-authentication was successful.boolean isSuccessfulUnAuthentication()
true iff all aspects of the un-authentication were successful.