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

gbellato
25.35.2007 44789f3979a2303ba8501b6b97b880bb53f321fa
opendj-sdk/opends/src/server/org/opends/server/tasks/InitializeTask.java
@@ -41,7 +41,7 @@
import org.opends.server.backends.task.TaskState;
import org.opends.server.messages.TaskMessages;
import org.opends.server.protocols.asn1.ASN1OctetString;
import org.opends.server.replication.plugin.SynchronizationDomain;
import org.opends.server.replication.plugin.ReplicationDomain;
import org.opends.server.types.Attribute;
import org.opends.server.types.AttributeType;
import org.opends.server.types.AttributeValue;
@@ -56,8 +56,8 @@
/**
 * This class provides an implementation of a Directory Server task that can
 * be used to import data over the synchronization protocol from another
 * server hosting the same synchronization domain.
 * be used to import data over the replication protocol from another
 * server hosting the same replication domain.
 */
public class InitializeTask extends Task
{
@@ -66,7 +66,7 @@
  boolean skipSchemaValidation    = false;
  String  domainString            = null;
  short  source;
  SynchronizationDomain domain = null;
  ReplicationDomain domain = null;
  TaskState initState;
  // The total number of entries expected to be processed when this import
@@ -110,7 +110,7 @@
          message, msgID);
    }
    domain=SynchronizationDomain.retrievesSynchronizationDomain(domainDN);
    domain=ReplicationDomain.retrievesReplicationDomain(domainDN);
    attrList = taskEntry.getAttribute(typeSourceScope);