From d04fb0f282e0fd9a4bc80d3f9d5ee15506a3b83b Mon Sep 17 00:00:00 2001
From: gbellato <gbellato@localhost>
Date: Mon, 08 Dec 2008 08:03:33 +0000
Subject: [PATCH] Merge the replication-service branch with the OpenDS trunk
---
opends/src/server/org/opends/server/replication/service/ReplInputStream.java | 10 +++++-----
1 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/opends/src/server/org/opends/server/replication/plugin/ReplLDIFInputStream.java b/opends/src/server/org/opends/server/replication/service/ReplInputStream.java
similarity index 94%
rename from opends/src/server/org/opends/server/replication/plugin/ReplLDIFInputStream.java
rename to opends/src/server/org/opends/server/replication/service/ReplInputStream.java
index 3e66ee9..7e0bd4b 100644
--- a/opends/src/server/org/opends/server/replication/plugin/ReplLDIFInputStream.java
+++ b/opends/src/server/org/opends/server/replication/service/ReplInputStream.java
@@ -24,7 +24,7 @@
*
* Copyright 2006-2008 Sun Microsystems, Inc.
*/
-package org.opends.server.replication.plugin;
+package org.opends.server.replication.service;
@@ -36,7 +36,7 @@
* 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 ReplLDIFInputStream
+public class ReplInputStream
extends InputStream
{
// Indicates whether this input stream has been closed.
@@ -51,14 +51,14 @@
/**
* Creates a new ReplLDIFInputStream that will import entries
- * for a synchronzation domain.
+ * for a synchronization domain.
*
* @param domain The replication domain
*/
- public ReplLDIFInputStream(ReplicationDomain domain)
+ public ReplInputStream(ReplicationDomain domain)
{
this.domain = domain;
- closed = false;
+ closed = false;
}
/**
--
Gitblit v1.10.0