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/ReplLDIFOutputStream.java | 10 +++++-----
1 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/opends/src/server/org/opends/server/replication/plugin/SynchroLDIFOutputStream.java b/opends/src/server/org/opends/server/replication/plugin/ReplLDIFOutputStream.java
similarity index 90%
rename from opends/src/server/org/opends/server/replication/plugin/SynchroLDIFOutputStream.java
rename to opends/src/server/org/opends/server/replication/plugin/ReplLDIFOutputStream.java
index 2516a7e..1f0e567 100644
--- a/opends/src/server/org/opends/server/replication/plugin/SynchroLDIFOutputStream.java
+++ b/opends/src/server/org/opends/server/replication/plugin/ReplLDIFOutputStream.java
@@ -34,19 +34,19 @@
* This class creates an output stream that can be used to export entries
* to a synchonization domain.
*/
-public class SynchroLDIFOutputStream
+public class ReplLDIFOutputStream
extends OutputStream
{
- SynchronizationDomain domain;
+ ReplicationDomain domain;
String entryBuffer = "";
/**
- * Creates a new SynchroLDIFOutputStream related to a synchronization
+ * Creates a new ReplLDIFOutputStream related to a replication
* domain.
*
- * @param domain The synchronization domain
+ * @param domain The replication domain
*/
- public SynchroLDIFOutputStream(SynchronizationDomain domain)
+ public ReplLDIFOutputStream(ReplicationDomain domain)
{
this.domain = domain;
}
--
Gitblit v1.10.0