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/ReplServerAckMessageList.java | 22 +++++++++++-----------
1 files changed, 11 insertions(+), 11 deletions(-)
diff --git a/opends/src/server/org/opends/server/replication/server/ReplServerAckMessageList.java b/opends/src/server/org/opends/server/replication/server/ReplServerAckMessageList.java
index 505d803..2beb0a0 100644
--- a/opends/src/server/org/opends/server/replication/server/ReplServerAckMessageList.java
+++ b/opends/src/server/org/opends/server/replication/server/ReplServerAckMessageList.java
@@ -35,7 +35,7 @@
public class ReplServerAckMessageList extends AckMessageList
{
private short replicationServerId;
- private ReplicationCache replicationCache;
+ private ReplicationServerDomain replicationServerDomain;
/**
* Creates a new AckMessageList for a given ChangeNumber.
@@ -45,17 +45,17 @@
* original change.
* @param replicationServerId The Identifier of the replication server
* from which the change was received.
- * @param replicationCache The ReplicationCache from which he change
- * was received.
+ * @param replicationServerDomain The ReplicationServerDomain from which he
+ * change was received.
*/
public ReplServerAckMessageList(ChangeNumber changeNumber,
int numExpectedAcks,
short replicationServerId,
- ReplicationCache replicationCache)
+ ReplicationServerDomain replicationServerDomain)
{
super(changeNumber, numExpectedAcks);
this.replicationServerId = replicationServerId;
- this.replicationCache = replicationCache;
+ this.replicationServerDomain = replicationServerDomain;
}
/**
@@ -70,14 +70,14 @@
}
/**
- * Get the replicationCache of the replication server from which we received
- * the change.
- * @return Returns the replicationCache of the replication server from which
- * we received the change .
+ * Get the replicationServerDomain of the replication server from which we
+ * received the change.
+ * @return Returns the replicationServerDomain of the replication server from
+ * which we received the change .
*/
- public ReplicationCache getChangelogCache()
+ public ReplicationServerDomain getChangelogCache()
{
- return replicationCache;
+ return replicationServerDomain;
}
--
Gitblit v1.10.0