modify abstract method

Future<LdapResult> modify(
  1. String dn,
  2. List<Modification> mods
)

Performs an LDAP modify operation.

Modifies the LDAP entry dn with the list of modifications mods.

Some possible exceptions

LdapResultObjectClassViolationException thrown when the change would cause the entry to violate LDAP schema rules.

Implementation

Future<LdapResult> modify(String dn, List<Modification> mods);