From 7adb93986ace907531875e25be1f94d735fbb068 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

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

diff --git a/opendj-sdk/opends/src/server/org/opends/server/replication/plugin/UpdateToReplay.java b/opendj-sdk/opends/src/server/org/opends/server/replication/plugin/UpdateToReplay.java
index 55fcce6..beb9690 100644
--- a/opendj-sdk/opends/src/server/org/opends/server/replication/plugin/UpdateToReplay.java
+++ b/opendj-sdk/opends/src/server/org/opends/server/replication/plugin/UpdateToReplay.java
@@ -26,7 +26,7 @@
  */
 package org.opends.server.replication.plugin;
 
-import org.opends.server.replication.protocol.UpdateMsg;
+import org.opends.server.replication.protocol.LDAPUpdateMsg;
 
 /**
  * This is a bag class to hold an update to replay in the queue of updates to
@@ -36,8 +36,8 @@
  */
 public class UpdateToReplay
 {
-  private UpdateMsg updateMessage = null;
-  private ReplicationDomain replicationDomain = null;
+  private LDAPUpdateMsg updateMessage = null;
+  private LDAPReplicationDomain replicationDomain = null;
 
   /**
    * Construct the object associating the update message with the replication
@@ -46,8 +46,8 @@
    * @param replicationDomain The replication domain to use for replaying the
    * change from the update message
    */
-  public UpdateToReplay(UpdateMsg updateMessage,
-    ReplicationDomain replicationDomain)
+  public UpdateToReplay(LDAPUpdateMsg updateMessage,
+    LDAPReplicationDomain replicationDomain)
   {
     this.updateMessage = updateMessage;
     this.replicationDomain = replicationDomain;
@@ -57,7 +57,7 @@
    * Getter for update message.
    * @return The update message
    */
-  public UpdateMsg getUpdateMessage()
+  public LDAPUpdateMsg getUpdateMessage()
   {
     return updateMessage;
   }
@@ -66,7 +66,7 @@
    * Getter for replication domain.
    * @return The replication domain
    */
-  public ReplicationDomain getReplicationDomain()
+  public LDAPReplicationDomain getReplicationDomain()
   {
     return replicationDomain;
   }

--
Gitblit v1.10.0