Uses of Class
org.ldaptive.FilterTemplate
-
Packages that use FilterTemplate Package Description org.ldaptive org.ldaptive.auth org.ldaptive.concurrent org.ldaptive.templates -
-
Uses of FilterTemplate in org.ldaptive
Fields in org.ldaptive declared as FilterTemplate Modifier and Type Field Description private FilterTemplate
SearchOperation. filterTemplate
Filter template.private FilterTemplate
FilterTemplate.Builder. object
Methods in org.ldaptive that return FilterTemplate Modifier and Type Method Description FilterTemplate
FilterTemplate.Builder. build()
FilterTemplate
SearchOperation. getTemplate()
Methods in org.ldaptive with parameters of type FilterTemplate Modifier and Type Method Description SearchResponse
SearchOperation. execute(String baseDN, FilterTemplate template, String[] returnAttributes, LdapEntryHandler... handlers)
Executes a search request.SearchResponse
SearchOperation. execute(FilterTemplate template)
Executes a search request.SearchResponse
SearchOperation. execute(FilterTemplate template, String... returnAttributes)
Executes a search request.SearchResponse
SearchOperation. execute(FilterTemplate template, String[] returnAttributes, LdapEntryHandler... handlers)
Executes a search request.SearchRequest.Builder
SearchRequest.Builder. filter(FilterTemplate template)
Sets the search filter.static SearchRequest
SearchRequest. objectScopeSearchRequest(String dn, String[] attrs, FilterTemplate template)
Returns a search request initialized for use with an object level search scope.SearchOperationHandle
SearchOperation. send(String baseDN, FilterTemplate template, String[] returnAttributes, LdapEntryHandler... handlers)
Sends a search request.SearchOperationHandle
SearchOperation. send(FilterTemplate template)
Sends a search request.SearchOperationHandle
SearchOperation. send(FilterTemplate template, String... returnAttributes)
Sends a search request.SearchOperationHandle
SearchOperation. send(FilterTemplate template, String[] returnAttributes, LdapEntryHandler... handlers)
Sends a search request.void
SearchRequest. setFilter(FilterTemplate template)
Sets the search filter.void
SearchOperation. setTemplate(FilterTemplate template)
SearchOperation.Builder
SearchOperation.Builder. template(FilterTemplate template)
Sets the filter template.Constructors in org.ldaptive with parameters of type FilterTemplate Constructor Description SearchRequest(String dn, FilterTemplate template, String... attributes)
Creates a new search request. -
Uses of FilterTemplate in org.ldaptive.auth
Methods in org.ldaptive.auth that return FilterTemplate Modifier and Type Method Description protected FilterTemplate
AbstractSearchEntryResolver. createFilterTemplate(AuthenticationCriteria ac)
Returns a filter template usingAbstractSearchEntryResolver.userFilter
andAbstractSearchEntryResolver.userFilterParameters
.protected FilterTemplate
SearchDnResolver. createFilterTemplate(User user)
Returns a filter template usingSearchDnResolver.userFilter
andSearchDnResolver.userFilterParameters
.Methods in org.ldaptive.auth with parameters of type FilterTemplate Modifier and Type Method Description protected SearchRequest
SearchDnResolver. createSearchRequest(FilterTemplate template)
Returns a search request for searching for a single entry in an LDAP, returning no attributes.protected SearchResponse
SearchDnResolver. performLdapSearch(FilterTemplate template)
Executes the ldap search operation with the supplied filter. -
Uses of FilterTemplate in org.ldaptive.concurrent
Methods in org.ldaptive.concurrent with parameters of type FilterTemplate Modifier and Type Method Description Collection<SearchResponse>
SearchOperationWorker. execute(FilterTemplate... templates)
Performs search operations for the supplied filters.Collection<SearchResponse>
SearchOperationWorker. execute(FilterTemplate[] templates, String... attrs)
Performs search operations for the supplied filters with the supplied return attributes -
Uses of FilterTemplate in org.ldaptive.templates
Methods in org.ldaptive.templates that return FilterTemplate Modifier and Type Method Description FilterTemplate[]
SearchTemplates. format(Query query)
Creates the filter templates using configured templates and the supplied query.Methods in org.ldaptive.templates with parameters of type FilterTemplate Modifier and Type Method Description protected SearchResponse
SearchTemplatesOperation. execute(FilterTemplate[] templates, String[] returnAttrs, Integer fromResult, Integer toResult)
Performs an LDAP search with the supplied templates and aggregates all the search results together.
-