From 17beeae33bb7d73dee3f1a4f9bdf18e5645717d7 Mon Sep 17 00:00:00 2001
From: mrossign <mrossign@localhost>
Date: Wed, 05 Dec 2007 09:31:02 +0000
Subject: [PATCH] Fix for #2655: Renaming ReplicationCache into ReplicationServerDomain

---
 opends/src/server/org/opends/server/replication/server/ReplicationServerDomain.java |   14 +++++++-------
 1 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/opends/src/server/org/opends/server/replication/server/ReplicationCache.java b/opends/src/server/org/opends/server/replication/server/ReplicationServerDomain.java
similarity index 98%
rename from opends/src/server/org/opends/server/replication/server/ReplicationCache.java
rename to opends/src/server/org/opends/server/replication/server/ReplicationServerDomain.java
index 41df388..7eadd3e 100644
--- a/opends/src/server/org/opends/server/replication/server/ReplicationCache.java
+++ b/opends/src/server/org/opends/server/replication/server/ReplicationServerDomain.java
@@ -70,7 +70,7 @@
  * received to the disk and for trimming them
  * Decision to trim can be based on disk space or age of the message
  */
-public class ReplicationCache
+public class ReplicationServerDomain
 {
   private Object flowControlLock = new Object();
   private DN baseDn = null;
@@ -119,13 +119,13 @@
   private static final DebugTracer TRACER = getTracer();
 
   /**
-   * Creates a new ReplicationCache associated to the DN baseDn.
+   * Creates a new ReplicationServerDomain associated to the DN baseDn.
    *
-   * @param baseDn The baseDn associated to the ReplicationCache.
+   * @param baseDn The baseDn associated to the ReplicationServerDomain.
    * @param replicationServer the ReplicationServer that created this
    *                          replicationServer cache.
    */
-  public ReplicationCache(DN baseDn, ReplicationServer replicationServer)
+  public ReplicationServerDomain(DN baseDn, ReplicationServer replicationServer)
   {
     this.baseDn = baseDn;
     this.replicationServer = replicationServer;
@@ -531,7 +531,7 @@
   }
 
   /**
-   * Returns the change count for that ReplicationCache.
+   * Returns the change count for that ReplicationServerDomain.
    *
    * @return the change count.
    */
@@ -842,7 +842,7 @@
     }
 
     /**
-     * Shutdown this ReplicationCache.
+     * Shutdown this ReplicationServerDomain.
      */
     public void shutdown()
     {
@@ -890,7 +890,7 @@
     @Override
     public String toString()
     {
-      return "ReplicationCache " + baseDn;
+      return "ReplicationServerDomain " + baseDn;
     }
 
     /**

--
Gitblit v1.10.0