@Extensible @ThreadSafety(level=INTERFACE_THREADSAFE) public interface LDIFWriterChangeRecordTranslator
Modifier and Type | Method and Description |
---|---|
LDIFChangeRecord |
translateChangeRecordToWrite(LDIFChangeRecord original)
Applies some special transformation or filtering to the original change
record.
|
@Nullable LDIFChangeRecord translateChangeRecordToWrite(@NotNull LDIFChangeRecord original)
original
- The original change record that was to be written.null
to signal that the change record should
not be written. Note, however, that if the original record
provided as a parameter is altered, then the change will be
visible to anything that references that change record. If you
are not sure about whether changes to the original change record
are acceptable, it is recommended that you use the
duplicate()
method to create a copy of the original and
make the necessary changes to that duplicate.