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

gbellato
01.04.2006 b5acb25ee2ad9bf8b166b9de1a34e6aab6ea23b7
opends/src/server/org/opends/server/synchronization/ModifyFakeOperation.java
@@ -44,17 +44,20 @@
{
  private ArrayList<Modification> mods = new ArrayList<Modification>();
  private DN dn;
  private String entryuuid;
  /**
   * Creates a new ModifyFakeOperation with the provided information.
   *
   * @param dn The dn on which the Operation was applied.
   * @param changenumber The ChangeNumber of the operation.
   * @param entryuuid The unique ID of the entry on which the Operation applies.
   */
  public ModifyFakeOperation(DN dn, ChangeNumber changenumber)
  public ModifyFakeOperation(DN dn, ChangeNumber changenumber, String entryuuid)
  {
    super(changenumber);
    this.dn = dn;
    this.entryuuid = entryuuid;
  }
  /**
@@ -75,6 +78,6 @@
  @Override
  public SynchronizationMessage generateMessage()
  {
    return new ModifyMsg(super.getChangeNumber(), dn, mods);
    return new ModifyMsg(super.getChangeNumber(), dn, mods, entryuuid);
  }
}