package ldap
- Alphabetic
- Public
- All
Type Members
- class ChainFilter extends Filter
-
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.
- class CustomQueryFilter extends Filter with Logging
-
trait
DirSearch extends Closeable
The object used for executing queries on the Directory Service.
-
trait
DirSearchFactory extends AnyRef
A factory for DirSearch.
-
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. -
trait
FilterFactory extends AnyRef
Factory for the filter.
- class GroupMembershipKeyFilter extends Filter with Logging
-
class
LdapSearch extends DirSearch with Logging
Implements search for LDAP.
- class LdapSearchFactory extends DirSearchFactory with Logging
- case class Query(filter: String, controls: SearchControls) extends Product with Serializable
-
final
class
QueryFactory extends AnyRef
A factory for common types of directory service search queries.
-
class
SearchResultHandler extends Logging
Constructs a search result handler object for the provided search results.
- class UserFilter extends Filter with Logging
- class UserMembershipKeyFilter extends Filter with Logging
Value Members
-
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
- object GroupFilterFactory extends FilterFactory
-
object
LdapUtils extends Logging
Static utility methods related to LDAP authentication module.
-
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
-
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.
- object UserFilterFactory extends FilterFactory with Logging
- object UserSearchFilter extends Filter
-
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.