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/replication/plugin/ReplLDIFInputStream.java |   14 +++++++-------
 1 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/opends/src/server/org/opends/server/replication/plugin/SynchroLDIFInputStream.java b/opends/src/server/org/opends/server/replication/plugin/ReplLDIFInputStream.java
similarity index 90%
rename from opends/src/server/org/opends/server/replication/plugin/SynchroLDIFInputStream.java
rename to opends/src/server/org/opends/server/replication/plugin/ReplLDIFInputStream.java
index 9252bb4..d886480 100644
--- a/opends/src/server/org/opends/server/replication/plugin/SynchroLDIFInputStream.java
+++ b/opends/src/server/org/opends/server/replication/plugin/ReplLDIFInputStream.java
@@ -36,22 +36,22 @@
  * This class creates an input stream that can be used to read entries generated
  * by SynchroLDIF as if they were being read from another source like a file.
  */
-public class SynchroLDIFInputStream
+public class ReplLDIFInputStream
 extends InputStream
 {
   // Indicates whether this input stream has been closed.
   private boolean closed;
 
-  // The synchronization domain associated to this import.
-  SynchronizationDomain domain;
+  // The domain associated to this import.
+  ReplicationDomain domain;
 
   /**
-   * Creates a new SynchroLDIFInputStream that will import entries
+   * Creates a new ReplLDIFInputStream that will import entries
    * for a synchronzation domain.
    *
-   * @param domain The synchronization domain
+   * @param domain The replication domain
    */
-  public SynchroLDIFInputStream(SynchronizationDomain domain)
+  public ReplLDIFInputStream(ReplicationDomain domain)
   {
     this.domain = domain;
     closed       = false;
@@ -115,7 +115,7 @@
          throws IOException
   {
     // This method is not supposed to be called to make an LDIF import
-    // for synchronization.
+    // for replication.
     throw new IOException("Not implemented");
   }
 }

--
Gitblit v1.10.0