Package | Description |
---|---|
org.apache.directory.ldap.client.api | |
org.apache.directory.ldap.client.api.future | |
org.apache.directory.ldap.client.api.listener |
Modifier and Type | Method and Description |
---|---|
ModifyDnResponse |
LdapConnection.modifyDn(ModifyDnRequest modDnRequest)
performs the modifyDn operation based on the given ModifyDnRequest.
|
ModifyDnResponse |
LdapConnection.move(org.apache.directory.shared.ldap.name.DN entryDn,
org.apache.directory.shared.ldap.name.DN newSuperiorDn)
moves the given entry DN under the new superior DN
|
ModifyDnResponse |
LdapConnection.move(String entryDn,
String newSuperiorDn) |
ModifyDnResponse |
LdapConnection.rename(org.apache.directory.shared.ldap.name.DN entryDn,
org.apache.directory.shared.ldap.name.RDN newRdn)
renames the given entryDn with new RDN and deletes the old RDN.
|
ModifyDnResponse |
LdapConnection.rename(org.apache.directory.shared.ldap.name.DN entryDn,
org.apache.directory.shared.ldap.name.RDN newRdn,
boolean deleteOldRdn)
renames the given entryDn with new RDN and deletes the old Rdn if
deleteOldRdn is set to true.
|
ModifyDnResponse |
LdapConnection.rename(String entryDn,
String newRdn)
renames the given entryDn with new Rdn and deletes the old RDN.
|
ModifyDnResponse |
LdapConnection.rename(String entryDn,
String newRdn,
boolean deleteOldRdn) |
Modifier and Type | Method and Description |
---|---|
ModifyDnResponse |
ModifyDnFuture.get()
Get the ModifyDnResponse, blocking until one is received.
|
ModifyDnResponse |
ModifyDnFuture.get(long timeout,
TimeUnit unit)
Get the ModifyDnResponse, blocking until one is received, or until the
given timeout is reached.
|
Modifier and Type | Method and Description |
---|---|
void |
ModifyDnListener.modifyDnCompleted(LdapConnection connection,
ModifyDnResponse response)
callback method called after completing the modifyDn operation.
|
Copyright © 2009-2012 Apache Software Foundation. All Rights Reserved.