Interface CaptureFactory<T>
-
- Type Parameters:
T- The type that theCaptureDecoratordecorates.
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 Twrap(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- TheMessageCapturepoints- TheSetofCapturePoints to capture.- Returns:
- The type of the decorated object.
-
-