Interface CaptureFactory<T>
-
- Type Parameters:
T
- The type that theCaptureDecorator
decorates.
public interface CaptureFactory<T> extends Indexed<Class<T>>
A factory for theCaptureDecorator
.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description T
wrap(T delegate, org.forgerock.openig.decoration.capture.MessageCapture messageCapture, Set<CapturePoint> points)
Wraps the decorator to be applied to the given object.
-
-
-
Method Detail
-
wrap
T wrap(T delegate, org.forgerock.openig.decoration.capture.MessageCapture messageCapture, Set<CapturePoint> points)
Wraps the decorator to be applied to the given object.- Parameters:
delegate
- The object to decorate with theCaptureDecorator
.messageCapture
- TheMessageCapture
points
- TheSet
ofCapturePoint
s to capture.- Returns:
- The type of the decorated object.
-
-