mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

jcduff
23.04.2008 b4f8838b15342670c31753a484abf0129e3c9653
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.UpdateMessage;
import org.opends.server.replication.protocol.UpdateMsg;
/**
 * This is a bag class to hold an update to replay in the queue of updates to
@@ -36,7 +36,7 @@
 */
public class UpdateToReplay
{
  private UpdateMessage updateMessage = null;
  private UpdateMsg updateMessage = null;
  private ReplicationDomain replicationDomain = null;
  /**
@@ -46,7 +46,7 @@
   * @param replicationDomain The replication domain to use for replaying the
   * change from the update message
   */
  public UpdateToReplay(UpdateMessage updateMessage,
  public UpdateToReplay(UpdateMsg updateMessage,
    ReplicationDomain replicationDomain)
  {
    this.updateMessage = updateMessage;
@@ -57,7 +57,7 @@
   * Getter for update message.
   * @return The update message
   */
  public UpdateMessage getUpdateMessage()
  public UpdateMsg getUpdateMessage()
  {
    return updateMessage;
  }