public interface SingleSignOnManager
| Modifier and Type | Method and Description |
|---|---|
void |
clear()
Remove the stored
Token and Cookies |
java.util.Collection<java.lang.String> |
getCookies()
Retrieve the Stored cookies
|
SSOToken |
getToken()
Retrieve the
Token |
boolean |
hasToken()
Check if token exists in the storage.
|
void |
persist(java.util.Collection<java.lang.String> cookies)
Persist the Cookies to storage
|
void |
persist(SSOToken token)
Persist the
Token to storage |
void |
revoke(FRListener<java.lang.Void> listener)
Revoke the SSO Session
|
void persist(java.util.Collection<java.lang.String> cookies)
cookies - The cookies `Set-Cookie` HTTP header valuevoid clear()
Token and Cookiesjava.util.Collection<java.lang.String> getCookies()
boolean hasToken()
void revoke(FRListener<java.lang.Void> listener)
listener - Listener to listen for token revocation event.