All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.ldaptive.ModifyDnOperation Maven / Gradle / Ivy

There is a newer version: 2.4.0
Show newest version
/* See LICENSE for licensing and NOTICE for copyright. */
package org.ldaptive;

/**
 * Executes an ldap modify dn operation.
 *
 * @author  Middleware Services
 */
public class ModifyDnOperation extends AbstractOperation
{


  /**
   * Creates a new modify dn operation.
   *
   * @param  conn  connection
   */
  public ModifyDnOperation(final Connection conn)
  {
    super(conn);
  }


  @Override
  protected Response invoke(final ModifyDnRequest request)
    throws LdapException
  {
    return getConnection().getProviderConnection().modifyDn(request);
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy