Package org.forgerock.android.auth
Interface Interceptor<T>
-
- All Known Subinterfaces:
DeviceCollector
- All Known Implementing Classes:
BluetoothCollector,BrowserCollector,CameraCollector,ConnectivityCollector,DisplayCollector,FRDeviceCollector,HardwareCollector,LocationCollector,MetadataCollector,NetworkCollector,PlatformCollector,TelephonyCollector
public interface Interceptor<T>Interceptor interface, generic interface for interceptor pattern.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interfaceInterceptor.ChainChain interface to chain up a list of interceptors.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidintercept(Interceptor.Chain chain, T data)Intercept the chain
-
-
-
Method Detail
-
intercept
void intercept(Interceptor.Chain chain, T data)
Intercept the chain- Parameters:
chain- The interceptor chaindata- The data received from previous chain
-
-