Interface CallbackController
-
- All Implemented Interfaces:
public interface CallbackControllerController to collect Callback data for org.forgerock.android.auth.ui.callback.CallbackFragment and control the Auth Service Action, the parent activity or parent fragment of the CallbackFragment should implement this interface to manage the embedded CallbackFragment. see AdaptiveCallbackFragment
-
-
Method Summary
Modifier and Type Method Description abstract voidnext()Move to the next node in the tree abstract voidonDataCollected(Callback callback)Notify when callback data are collected. abstract voidcancel(Exception e)Cancel the current authentication abstract voidsuspend()Suspend the current authentication -
-
Method Detail
-
next
abstract void next()
Move to the next node in the tree
-
onDataCollected
abstract void onDataCollected(Callback callback)
Notify when callback data are collected.
- Parameters:
callback- The Callback
-
cancel
abstract void cancel(Exception e)
Cancel the current authentication
- Parameters:
e- Exception when cancelling the authentication process.
-
suspend
abstract void suspend()
Suspend the current authentication
-
-
-
-