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

gbellato
09.15.2006 7b84e53457bce1f0733afa87797afc9928568c52
opendj-sdk/opends/src/server/org/opends/server/synchronization/DeleteMsg.java
@@ -45,6 +45,7 @@
  /**
   * Creates a new delete message.
   *
   * @param op the Operation from which the message must be created.
   */
  public DeleteMsg(DeleteOperation op)
@@ -54,6 +55,19 @@
  }
  /**
   * Creates a new delete message.
   *
   * @param dn The dn with which the message must be created.
   * @param changeNumber The change number with which the message must be
   *                     created.
   * @param uid The unique id with which the message must be created.
   */
  public DeleteMsg(String dn, ChangeNumber changeNumber, String uid)
  {
    super(new DeleteContext(changeNumber, uid), dn);
  }
  /**
   * Creates a new Add message from a byte[].
   *
   * @param in The byte[] from which the operation must be read.