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 boolean
Ldap. compare(SearchFilter filter)
This will perform an LDAP compare operation with the supplied filter.boolean
Ldap. 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 boolean
Authenticator. 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.Attributes
Authenticator. 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 SearchFilter
CompareAuthorizationHandler. getSearchFilter()
Returns the search filter.Methods in edu.vt.middleware.ldap.auth.handler with parameters of type SearchFilter Modifier and Type Method Description void
CompareAuthorizationHandler. 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 newCompareAuthorizationHandler
with 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 SearchFilter
CompareLdapValidator. getValidateFilter()
Returns the validate filter.Methods in edu.vt.middleware.ldap.pool with parameters of type SearchFilter Modifier and Type Method Description void
CompareLdapValidator. 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 newCompareLdapValidator
with the supplied compare dn and filter.
-