Class AggregateLDIFWriterChangeRecordTranslator

    • Constructor Detail

      • AggregateLDIFWriterChangeRecordTranslator

        public AggregateLDIFWriterChangeRecordTranslator​(@Nullable
                                                         LDIFWriterChangeRecordTranslator... translators)
        Creates a new aggregate LDIF writer change record translator that will invoke all of the provided translators for each record to be processed.
        Parameters:
        translators - The set of LDIF writer change record translators to be invoked for each record to be processed.
      • AggregateLDIFWriterChangeRecordTranslator

        public AggregateLDIFWriterChangeRecordTranslator​(@Nullable
                                                         java.util.Collection<? extends LDIFWriterChangeRecordTranslator> translators)
        Creates a new aggregate LDIF writer change record translator that will invoke all of the provided translators for each record to be processed.
        Parameters:
        translators - The set of LDIF writer change record translators to be invoked for each record to be processed.
    • Method Detail

      • translateChangeRecordToWrite

        @Nullable
        public LDIFChangeRecord translateChangeRecordToWrite​(@NotNull
                                                             LDIFChangeRecord original)
        Applies some special transformation or filtering to the original change record.
        Specified by:
        translateChangeRecordToWrite in interface LDIFWriterChangeRecordTranslator
        Parameters:
        original - The original change record that was to be written.
        Returns:
        The change record that should be written. This can be the original parameter change record, a newly-constructed change record, or 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.