mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

matthew_swift
26.21.2007 5ceb2e9601d2501d021d0c61188ec913076555a0
opends/src/server/org/opends/server/backends/jeb/ImportContext.java
@@ -30,7 +30,7 @@
import org.opends.server.types.Entry;
import org.opends.server.types.LDIFImportConfig;
import org.opends.server.util.LDIFReader;
import org.opends.server.admin.std.server.JEBackendCfg;
import org.opends.server.admin.std.server.LocalDBBackendCfg;
import java.util.concurrent.BlockingQueue;
import java.util.concurrent.atomic.AtomicLong;
@@ -61,7 +61,7 @@
  /**
   * The configuration of the destination backend.
   */
  private JEBackendCfg config;
  private LocalDBBackendCfg config;
  /**
   * The requested LDIF import configuration.
@@ -154,7 +154,7 @@
   * Set the configuration of the destination backend.
   * @param config The destination backend configuration.
   */
  public void setConfig(JEBackendCfg config)
  public void setConfig(LocalDBBackendCfg config)
  {
    this.config = config;
  }
@@ -163,7 +163,7 @@
   * Get the configuration of the destination backend.
   * @return The destination backend configuration.
   */
  public JEBackendCfg getConfig()
  public LocalDBBackendCfg getConfig()
  {
    return config;
  }