Package org.forgerock.android.auth
Interface FRLifecycleListener
-
- All Implemented Interfaces:
public interface FRLifecycleListenerListener to listen for FR SDK Event
-
-
Method Summary
Modifier and Type Method Description abstract voidonSSOTokenUpdated(SSOToken ssoToken)Interface definition for a listener to be invoked when the SSOToken changed. abstract voidonCookiesUpdated(Collection<String> cookies)Interface definition for a listener to be invoked when the cookies changed. abstract voidonLogout()Interface definition for a listener to be invoked when the logout. -
-
Method Detail
-
onSSOTokenUpdated
abstract void onSSOTokenUpdated(SSOToken ssoToken)
Interface definition for a listener to be invoked when the SSOToken changed.
- Parameters:
ssoToken- The updated SSOToken
-
onCookiesUpdated
abstract void onCookiesUpdated(Collection<String> cookies)
Interface definition for a listener to be invoked when the cookies changed.
- Parameters:
cookies- The updated Cookies
-
onLogout
abstract void onLogout()
Interface definition for a listener to be invoked when the logout.
-
-
-
-