From 5349c97806bb0a00038d8dc3dee4254fad187649 Mon Sep 17 00:00:00 2001
From: gbellato <gbellato@localhost>
Date: Wed, 25 Apr 2007 16:35:36 +0000
Subject: [PATCH] Second set of renaming for issue 1090 Rename org.opends.server.replication.changelog into org.opends.server.synchronization.changelog Use replication instead of synchronization in many places in the code/comment/file names
---
opends/src/server/org/opends/server/tasks/InitializeTask.java | 10 +++++-----
1 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/opends/src/server/org/opends/server/tasks/InitializeTask.java b/opends/src/server/org/opends/server/tasks/InitializeTask.java
index 07e8fc0..0fcfd92 100644
--- a/opends/src/server/org/opends/server/tasks/InitializeTask.java
+++ b/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);
--
Gitblit v1.10.0