Uses of Class
edu.vt.middleware.ldap.SearchFilter
-
Packages that use SearchFilter Package Description edu.vt.middleware.ldap edu.vt.middleware.ldap.auth edu.vt.middleware.ldap.auth.handler edu.vt.middleware.ldap.pool -
-
Uses of SearchFilter in edu.vt.middleware.ldap
Methods in edu.vt.middleware.ldap with parameters of type SearchFilter Modifier and Type Method Description booleanLdap. compare(SearchFilter filter)This will perform an LDAP compare operation with the supplied filter.booleanLdap. compare(java.lang.String dn, SearchFilter filter)This will perform an LDAP compare operation with the supplied filter and dn.java.util.Iterator<javax.naming.directory.SearchResult>Ldap. search(SearchFilter filter)This will query the LDAP with the supplied filter.java.util.Iterator<javax.naming.directory.SearchResult>Ldap. search(SearchFilter filter, java.lang.String[] retAttrs)This will query the LDAP with the supplied filter and return attributes.java.util.Iterator<javax.naming.directory.SearchResult>Ldap. search(SearchFilter filter, javax.naming.directory.SearchControls searchControls)This will query the LDAP with the supplied filter and search controls.java.util.Iterator<javax.naming.directory.SearchResult>Ldap. search(java.lang.String dn, SearchFilter filter)This will query the LDAP with the supplied dn and filter.java.util.Iterator<javax.naming.directory.SearchResult>Ldap. search(java.lang.String dn, SearchFilter filter, java.lang.String[] retAttrs)This will query the LDAP with the supplied dn, filter, and return attributes.java.util.Iterator<javax.naming.directory.SearchResult>Ldap. search(java.lang.String dn, SearchFilter filter, java.lang.String[] retAttrs, SearchResultHandler... handler)This will query the LDAP with the supplied dn, filter, return attributes, and search result handler.java.util.Iterator<javax.naming.directory.SearchResult>Ldap. search(java.lang.String dn, SearchFilter filter, javax.naming.directory.SearchControls searchControls)This will query the LDAP with the supplied dn, filter, and search controls.java.util.Iterator<javax.naming.directory.SearchResult>Ldap. search(java.lang.String dn, SearchFilter filter, javax.naming.directory.SearchControls searchControls, SearchResultHandler... handler)This will query the LDAP with the supplied dn, filter, search controls, and search result handler. -
Uses of SearchFilter in edu.vt.middleware.ldap.auth
Methods in edu.vt.middleware.ldap.auth with parameters of type SearchFilter Modifier and Type Method Description booleanAuthenticator. authenticate(java.lang.String user, java.lang.Object credential, SearchFilter filter)This will authenticate by binding to the LDAP with the supplied user and credential.javax.naming.directory.AttributesAuthenticator. authenticate(java.lang.String user, java.lang.Object credential, SearchFilter filter, java.lang.String[] retAttrs)This will authenticate by binding to the LDAP with the supplied user and credential. -
Uses of SearchFilter in edu.vt.middleware.ldap.auth.handler
Methods in edu.vt.middleware.ldap.auth.handler that return SearchFilter Modifier and Type Method Description SearchFilterCompareAuthorizationHandler. getSearchFilter()Returns the search filter.Methods in edu.vt.middleware.ldap.auth.handler with parameters of type SearchFilter Modifier and Type Method Description voidCompareAuthorizationHandler. setSearchFilter(SearchFilter sf)Sets the search filter.Constructors in edu.vt.middleware.ldap.auth.handler with parameters of type SearchFilter Constructor Description CompareAuthorizationHandler(SearchFilter sf)Creates a newCompareAuthorizationHandlerwith the supplied search filter. -
Uses of SearchFilter in edu.vt.middleware.ldap.pool
Methods in edu.vt.middleware.ldap.pool that return SearchFilter Modifier and Type Method Description SearchFilterCompareLdapValidator. getValidateFilter()Returns the validate filter.Methods in edu.vt.middleware.ldap.pool with parameters of type SearchFilter Modifier and Type Method Description voidCompareLdapValidator. setValidateFilter(SearchFilter filter)Sets the validate filter.Constructors in edu.vt.middleware.ldap.pool with parameters of type SearchFilter Constructor Description CompareLdapValidator(java.lang.String dn, SearchFilter filter)Creates a newCompareLdapValidatorwith the supplied compare dn and filter.
-