Class DefaultLdapEntryManager<T>

    • Field Detail

      • logger

        protected final Logger logger
        Logger for this class.
      • ldapEntryMapper

        private final LdapEntryMapper<T> ldapEntryMapper
        Mapper for converting ldap entry to object type.
      • connectionFactory

        private final ConnectionFactory connectionFactory
        Connection factory for LDAP communication.
      • returnAttributes

        private final String[] returnAttributes
        Additional attributes to include in searches.
    • Constructor Detail

      • DefaultLdapEntryManager

        public DefaultLdapEntryManager​(LdapEntryMapper<T> mapper,
                                       ConnectionFactory factory)
        Creates a new default ldap entry manager.
        Parameters:
        mapper - for object conversion
        factory - for LDAP communication
      • DefaultLdapEntryManager

        public DefaultLdapEntryManager​(LdapEntryMapper<T> mapper,
                                       ConnectionFactory factory,
                                       String[] attrs)
        Creates a new default ldap entry manager. Use of attrs is for cases where a directory does not support either the '*' or '+' syntaxes for returning all attributes of a given type.
        Parameters:
        mapper - for object conversion
        factory - for LDAP communication
        attrs - additional return attributes
    • Method Detail

      • getLdapEntryMapper

        public LdapEntryMapper<T> getLdapEntryMapper()
        Returns the ldap entry mapper.
        Returns:
        ldap entry mapper
      • getConnectionFactory

        public ConnectionFactory getConnectionFactory()
        Returns the connection factory.
        Returns:
        connection factory
      • getReturnAttributes

        public String[] getReturnAttributes()
        Returns the return attributes.
        Returns:
        additional attributes to include in searches.
      • find

        public T find​(T object)
               throws LdapException
        Description copied from interface: LdapEntryManager
        Searches for the supplied annotated object in an LDAP and returns the object mapped with it's ldap attribute properties set.
        Specified by:
        find in interface LdapEntryManager<T>
        Parameters:
        object - to find
        Returns:
        mapped object
        Throws:
        LdapException - if the object cannot be found