package ldap

Ordering
  1. Alphabetic
Visibility
  1. Public
  2. All

Type Members

  1. class ChainFilter extends Filter
  2. class ChainFilterFactory extends FilterFactory

    A factory that produces a Filter that is implemented as a chain of other filters.

    A factory that produces a Filter that is implemented as a chain of other filters. The chain of filters are created as a result of ChainFilterFactory#getInstance method call. The resulting object filters out all users that don't pass all chained filters. The filters will be applied in the order they are mentioned in the factory constructor.

  3. class CustomQueryFilter extends Filter with Logging
  4. trait DirSearch extends Closeable

    The object used for executing queries on the Directory Service.

  5. trait DirSearchFactory extends AnyRef

    A factory for DirSearch.

  6. trait Filter extends AnyRef

    The object that filters LDAP users.

    The object that filters LDAP users.
    The assumption is that this user was already authenticated by a previous bind operation.

  7. trait FilterFactory extends AnyRef

    Factory for the filter.

  8. class GroupMembershipKeyFilter extends Filter with Logging
  9. class LdapSearch extends DirSearch with Logging

    Implements search for LDAP.

  10. class LdapSearchFactory extends DirSearchFactory with Logging
  11. case class Query(filter: String, controls: SearchControls) extends Product with Serializable
  12. final class QueryFactory extends AnyRef

    A factory for common types of directory service search queries.

  13. class SearchResultHandler extends Logging

    Constructs a search result handler object for the provided search results.

  14. class UserFilter extends Filter with Logging
  15. class UserMembershipKeyFilter extends Filter with Logging

Value Members

  1. object CustomQueryFilterFactory extends FilterFactory

    A factory for a Filter based on a custom query.

    A factory for a Filter based on a custom query.
    The produced filter object filters out all users that are not found in the search result of the query provided in Kyuubi configuration.

    See also

    KyuubiConf.AUTHENTICATION_LDAP_CUSTOM_LDAP_QUERY

  2. object GroupFilterFactory extends FilterFactory
  3. object LdapUtils extends Logging

    Static utility methods related to LDAP authentication module.

  4. object Query extends Serializable

    The object that encompasses all components of a Directory Service search query.

    The object that encompasses all components of a Directory Service search query.

    See also

    LdapSearch

  5. object SearchResultHandler

    The object that handles Directory Service search results.

    The object that handles Directory Service search results. In most cases it converts search results into a list of names in the namespace.

  6. object UserFilterFactory extends FilterFactory with Logging
  7. object UserSearchFilter extends Filter
  8. object UserSearchFilterFactory extends FilterFactory

    A factory for a Filter that check whether provided user could be found in the directory.

    A factory for a Filter that check whether provided user could be found in the directory.
    The produced filter object filters out all users that are not found in the directory.

Ungrouped