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

coulbeck
21.08.2006 7d1b6429fc23f8d41e46ac752f242de5f4966a69
opendj-sdk/opends/src/server/org/opends/server/protocols/ldap/ModifyDNRequestProtocolOp.java
@@ -30,8 +30,6 @@
import java.util.ArrayList;
import org.opends.server.core.DirectoryException;
import org.opends.server.core.ModifyDNOperation;
import org.opends.server.protocols.asn1.ASN1Boolean;
import org.opends.server.protocols.asn1.ASN1Element;
import org.opends.server.protocols.asn1.ASN1OctetString;
@@ -408,36 +406,6 @@
  /**
   * Converts the provided LDAP message containing a modify DN request protocol
   * op to a <CODE>ModifyDNOperation</CODE> object that may be processed by the
   * core server.
   *
   * @param  requestMessage    The LDAP message containing the modify DN request
   *                           protocol op.
   * @param  clientConnection  The client connection from which the request was
   *                           read.
   *
   * @return  The modify DN operation created from the provided request message.
   *
   * @throws  DirectoryException  If the provided LDAP message cannot be decoded
   *                              as a modify DN operation.
   */
  public static ModifyDNOperation messageToModifyDNOperation(
                                       LDAPMessage requestMessage,
                                       LDAPClientConnection clientConnection)
         throws DirectoryException
  {
    assert debugEnter(CLASS_NAME, "messageToModifyDNOperation",
                      String.valueOf(requestMessage),
                      String.valueOf(clientConnection));
    // NYI
    return null;
  }
  /**
   * Appends a string representation of this LDAP protocol op to the provided
   * buffer.
   *