Uses of Interface
org.forgerock.openig.decoration.capture.KeyValueProcessor
-
Packages that use KeyValueProcessor Package Description org.forgerock.openig.decoration.capture Capture decoration classes that prints filters and handlers input and output messages. -
-
Uses of KeyValueProcessor in org.forgerock.openig.decoration.capture
Classes in org.forgerock.openig.decoration.capture that implement KeyValueProcessor Modifier and Type Class Description class
HideKeyValueProcessor
For every key that starts with the keyToHide, return an empty value.class
ObjectMapperKeyValueProcessor
Attempt to deserialize the Object into its String representation.class
PatternKeyValueProcessor
If the key matches the expression, return a masked value otherwise return the original value.Methods in org.forgerock.openig.decoration.capture that return KeyValueProcessor Modifier and Type Method Description static KeyValueProcessor
KeyValueProcessor. chain(KeyValueProcessor... processors)
Process a chain ofKeyValueProcessor
processors in the order they are added.Methods in org.forgerock.openig.decoration.capture with parameters of type KeyValueProcessor Modifier and Type Method Description static KeyValueProcessor
KeyValueProcessor. chain(KeyValueProcessor... processors)
Process a chain ofKeyValueProcessor
processors in the order they are added.Constructors in org.forgerock.openig.decoration.capture with parameters of type KeyValueProcessor Constructor Description CaptureDecorator(String name, boolean captureEntity, boolean captureContext, int maxEntityLength, KeyValueProcessor headerProcessor, KeyValueProcessor attributeProcessor, KeyValueProcessor trailerProcessor)
Builds a newcapture
decorator.MessageCapture(org.slf4j.Logger logger, boolean captureEntity, boolean captureContext, int maxEntityLength, KeyValueProcessor headerProcessor, KeyValueProcessor attributeProcessor, KeyValueProcessor trailerProcessor)
Builds a new MessageCapture.
-