Interface LDAPDirectory

All Superinterfaces:
Attributes, RemoteDirectory
All Known Implementing Classes:
ApacheDS, ApacheDS15, AppleOpenDirectory, FedoraDS, GenericLDAP, MicrosoftActiveDirectory, NovelleDirectory, OpenDS, OpenLDAP, OpenLDAPRfc2307, Rfc2307, RFC2307Directory, RFC4519Directory, SpringLDAPConnector, SunONE

public interface LDAPDirectory extends RemoteDirectory
Contains methods specific to LDAP directories.
  • Method Details

    • findEntityByDN

      Finds a directory entity (principal, group or role) by their distinguished name.

      The object class of an entity is used to determine the entity type.

      If an object represents both a group and role, then the object is mapped to a group.

      Parameters:
      dn - standardised distinguished name.
      entityClass - class of the entity to find (either LDAPUserWithAttributes or LDAPGroupWithAttributes).
      Returns:
      directory entity corresponding to DN.
      Throws:
      UserNotFoundException - if a user does not exist at the specified DN or the DN does not exist in the directory. This will also be thrown if the entity DOES exist but does not match the base DN or object filter for the entity type.
      GroupNotFoundException - if a user does not exist at the specified DN or the DN does not exist in the directory. This will also be thrown if the entity DOES exist but does not match the base DN or object filter for the entity type.
      IllegalArgumentException - if entityClass is not assignable from User or Group.
      OperationFailedException - if underlying directory implementation failed to execute the operation.