Package org.forgerock.android.auth
Interface Interceptor
-
- All Implemented Interfaces:
public interface Interceptor<T>Interceptor interface, generic interface for interceptor pattern.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public interfaceInterceptor.ChainChain interface to chain up a list of interceptors.
-
Method Summary
Modifier and Type Method Description abstract voidintercept(Interceptor.Chain chain, T data)Intercept the chain -
-
Method Detail
-
intercept
abstract void intercept(Interceptor.Chain chain, T data)
Intercept the chain
- Parameters:
chain- The interceptor chaindata- The data received from previous chain
-
-
-
-