Package org.forgerock.android.auth
Interface Interceptor.Chain
-
- All Known Implementing Classes:
InterceptorHandler
- Enclosing interface:
- Interceptor<T>
public static interface Interceptor.ChainChain interface to chain up a list of interceptors.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description android.content.ContextgetContext()Retrieve the Application contextFRListenergetListener()The listener to listen for the chain processingvoidproceed(java.lang.Object object)Proceed and execute the chain.
-
-
-
Method Detail
-
getContext
android.content.Context getContext()
Retrieve the Application context- Returns:
- The Application Context
-
getListener
FRListener getListener()
The listener to listen for the chain processing- Returns:
- The Listener to listen for chain event
-
proceed
void proceed(java.lang.Object object)
Proceed and execute the chain.- Parameters:
object- The chain context
-
-