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