From 71ebb3724c79a7d1218c36f080acd6ee162b9cd2 Mon Sep 17 00:00:00 2001
From: gbellato <gbellato@localhost>
Date: Thu, 26 Apr 2007 06:31:01 +0000
Subject: [PATCH] Rename the class with names containing synchronization or changelog. Replace most of the changelog occurences with replication server. (issue 1090)

---
 opends/src/server/org/opends/server/replication/protocol/ReplicationMessage.java |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/opends/src/server/org/opends/server/replication/protocol/ReplicationMessage.java b/opends/src/server/org/opends/server/replication/protocol/ReplicationMessage.java
index 206094c..f4a8ecf 100644
--- a/opends/src/server/org/opends/server/replication/protocol/ReplicationMessage.java
+++ b/opends/src/server/org/opends/server/replication/protocol/ReplicationMessage.java
@@ -44,7 +44,7 @@
   static final byte MSG_TYPE_MODIFYDN_REQUEST = 4;
   static final byte MSG_TYPE_ACK = 5;
   static final byte MSG_TYPE_SERVER_START = 6;
-  static final byte MSG_TYPE_CHANGELOG_START = 7;
+  static final byte MSG_TYPE_REPL_SERVER_START = 7;
   static final byte MSG_TYPE_WINDOW = 8;
   static final byte MSG_TYPE_HEARTBEAT = 9;
   static final byte MSG_TYPE_INITIALIZE_REQUEST = 10;
@@ -64,7 +64,7 @@
    * MSG_TYPE_MODIFY_DN_REQUEST
    * MSG_TYPE_ACK
    * MSG_TYPE_SERVER_START
-   * MSG_TYPE_CHANGELOG_START
+   * MSG_TYPE_REPL_SERVER_START
    * MSG_TYPE_WINDOW
    * MSG_TYPE_HEARTBEAT
    * MSG_TYPE_INITIALIZE
@@ -110,8 +110,8 @@
       case MSG_TYPE_SERVER_START:
         msg = new ServerStartMessage(buffer);
       break;
-      case MSG_TYPE_CHANGELOG_START:
-        msg = new ChangelogStartMessage(buffer);
+      case MSG_TYPE_REPL_SERVER_START:
+        msg = new ReplServerStartMessage(buffer);
       break;
       case MSG_TYPE_WINDOW:
         msg = new WindowMessage(buffer);

--
Gitblit v1.10.0