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

jdemendi
17.21.2007 c429ea0c780d83a49531de1f7d42e9f802ce8fe8
opends/src/server/org/opends/server/protocols/jmx/JmxClientConnection.java
@@ -477,7 +477,7 @@
   * @return  A reference to the add operation that was processed and contains
   *          information about the result of the processing.
   */
  public AddOperationBasis processAdd(ASN1OctetString rawEntryDN,
  public AddOperation processAdd(ASN1OctetString rawEntryDN,
                                 ArrayList<RawAttribute> rawAttributes)
  {
    AddOperationBasis addOperation =
@@ -619,7 +619,7 @@
   * @return  A reference to the delete operation that was processed and
   *          contains information about the result of the processing.
   */
  public DeleteOperationBasis processDelete(ASN1OctetString rawEntryDN)
  public DeleteOperation processDelete(ASN1OctetString rawEntryDN)
  {
    DeleteOperationBasis deleteOperation =
         new DeleteOperationBasis(this, nextOperationID(), nextMessageID(),
@@ -676,7 +676,7 @@
   * @return  A reference to the modify operation that was processed and
   *          contains information about the result of the processing
   */
  public ModifyOperationBasis processModify(ASN1OctetString rawEntryDN,
  public ModifyOperation processModify(ASN1OctetString rawEntryDN,
                              ArrayList<RawModification> rawModifications)
  {
    ModifyOperationBasis modifyOperation =
@@ -744,7 +744,7 @@
   * @return  A reference to the modify DN operation that was processed and
   *          contains information about the result of the processing.
   */
  public ModifyDNOperationBasis processModifyDN(ASN1OctetString rawEntryDN,
  public ModifyDNOperation processModifyDN(ASN1OctetString rawEntryDN,
                                           ASN1OctetString rawNewRDN,
                                           boolean deleteOldRDN)
  {
@@ -767,7 +767,7 @@
   * @return  A reference to the modify DN operation that was processed and
   *          contains information about the result of the processing.
   */
  public ModifyDNOperationBasis processModifyDN(ASN1OctetString rawEntryDN,
  public ModifyDNOperation processModifyDN(ASN1OctetString rawEntryDN,
                                           ASN1OctetString rawNewRDN,
                                           boolean deleteOldRDN,
                                           ASN1OctetString rawNewSuperior)
@@ -807,7 +807,7 @@
   *          processed and contains information about the result of
   *          the processing.
   */
  public ModifyDNOperationBasis processModifyDN(DN entryDN, RDN newRDN,
  public ModifyDNOperation processModifyDN(DN entryDN, RDN newRDN,
                                           boolean deleteOldRDN,
                                           DN newSuperior)
  {