Interface ImportTaskListener

    • Method Detail

      • processImportBegin

        void processImportBegin​(LocalBackend<?> backend,
                                LDIFImportConfig config)
        Performs any processing that might be necessary just before the server begins processing on an LDIF import task. This should include pausing interaction with the provided backend while the import is in progress.
        Parameters:
        backend - The backend to be imported.
        config - Configuration information about the LDIF import to be performed.
      • processImportEnd

        void processImportEnd​(LocalBackend<?> backend,
                              LDIFImportConfig config,
                              boolean successful)
        Performs any processing that might be necessary after the server has completed processing on an LDIF import task. Note that this will always be called when import processing completes, regardless of whether it was successful.
        Parameters:
        backend - The backend that was imported.
        config - Configuration information about the LDIF import that was performed.
        successful - Indicates whether the import operation completed successfully.