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

Matthew Swift
29.55.2013 4aa1cf5e26d49ab1273d6affc58a5ac70b870ec4
opendj3/opendj-ldap-sdk/src/main/java/org/forgerock/opendj/ldap/requests/ModifyDNRequest.java
@@ -45,25 +45,18 @@
 * to a new location in the Directory.
 */
public interface ModifyDNRequest extends Request, ChangeRecord {
    /**
     * {@inheritDoc}
     */
    @Override
    <R, P> R accept(ChangeRecordVisitor<R, P> v, P p);
    /**
     * {@inheritDoc}
     */
    @Override
    ModifyDNRequest addControl(Control control);
    /**
     * {@inheritDoc}
     */
    @Override
    <C extends Control> C getControl(ControlDecoder<C> decoder, DecodeOptions options)
            throws DecodeException;
    /**
     * {@inheritDoc}
     */
    @Override
    List<Control> getControls();
    /**
@@ -73,6 +66,7 @@
     *
     * @return The distinguished name of the entry.
     */
    @Override
    DN getName();
    /**