Uses of Interface
org.ldaptive.filter.Filter
-
Packages that use Filter Package Description org.ldaptive org.ldaptive.control org.ldaptive.filter org.ldaptive.url -
-
Uses of Filter in org.ldaptive
Fields in org.ldaptive declared as Filter Modifier and Type Field Description private FilterSearchRequest. searchFilterSearch filter.Methods in org.ldaptive that return Filter Modifier and Type Method Description FilterSearchRequest. getFilter()Returns the search filter.Methods in org.ldaptive with parameters of type Filter Modifier and Type Method Description private SearchRequestSearchOperation. configureRequest(String baseDN, Filter filter, String[] returnAttributes)Creates a new request fromSearchOperation.getRequest()and applies any non-null supplied properties.SearchResponseSearchOperation. execute(String baseDN, Filter filter, String[] returnAttributes, LdapEntryHandler... handlers)Executes a search request.SearchResponseSearchOperation. execute(Filter filter)Executes a search request.SearchResponseSearchOperation. execute(Filter filter, String... returnAttributes)Executes a search request.SearchResponseSearchOperation. execute(Filter filter, String[] returnAttributes, LdapEntryHandler... handlers)Executes a search request.SearchRequest.BuilderSearchRequest.Builder. filter(Filter filter)Sets the search filter.static SearchRequestSearchRequest. objectScopeSearchRequest(String dn, String[] attrs, Filter filter)Returns a search request initialized for use with an object level search scope.SearchOperationHandleSearchOperation. send(String baseDN, Filter filter, String[] returnAttributes, LdapEntryHandler... handlers)Sends a search request.SearchOperationHandleSearchOperation. send(Filter filter)Sends a search request.SearchOperationHandleSearchOperation. send(Filter filter, String... returnAttributes)Sends a search request.SearchOperationHandleSearchOperation. send(Filter filter, String[] returnAttributes, LdapEntryHandler... handlers)Sends a search request.voidSearchRequest. setFilter(Filter filter)Sets the search filter.Constructors in org.ldaptive with parameters of type Filter Constructor Description SearchRequest(String dn, Filter filter, String... attributes)Creates a new search request.SearchRequest(String dn, SearchScope scope, DerefAliases aliases, int size, Duration time, boolean types, Filter filter, String... attributes)Creates a new search request. -
Uses of Filter in org.ldaptive.control
Fields in org.ldaptive.control declared as Filter Modifier and Type Field Description private Filter[]MatchedValuesRequestControl. matchedValuesFilterslist of matched values filters.Methods in org.ldaptive.control that return Filter Modifier and Type Method Description Filter[]MatchedValuesRequestControl. getMatchedValuesFilters()Returns the filters to use for matching values.Methods in org.ldaptive.control with parameters of type Filter Modifier and Type Method Description voidMatchedValuesRequestControl. setMatchedValuesFilters(Filter... filters)Sets the filters to use for matching values.private voidMatchedValuesRequestControl. validateFilter(Filter filter)Throws if the supplied filter is not a valid type for the matched values request control.Constructors in org.ldaptive.control with parameters of type Filter Constructor Description MatchedValuesRequestControl(Filter... filters)Creates a new matched values request control.MatchedValuesRequestControl(Filter[] filters, boolean critical)Creates a new matched values request control. -
Uses of Filter in org.ldaptive.filter
Subinterfaces of Filter in org.ldaptive.filter Modifier and Type Interface Description interfaceFilterSetContainer of search filters.Classes in org.ldaptive.filter that implement Filter Modifier and Type Class Description classAbstractAttributeValueAssertionFilterBase class for attribute value assertion filters.classAndFilterAnd search filter set defined as:classApproximateFilterApproximate search filter component defined as:classEqualityFilterEquality search filter component.classExtensibleFilterExtensible search filter component.classGreaterOrEqualFilterGreater or equal search filter component defined as:classLessOrEqualFilterLess or equal search filter component defined as:classNotFilterNot search filter set defined as:classOrFilterOr search filter set defined as:classPresenceFilterPresence search filter component defined as:classSubstringFilterSubstring search filter component defined as:Fields in org.ldaptive.filter declared as Filter Modifier and Type Field Description private FilterNotFilter. filterComponentComponent of this filter.Fields in org.ldaptive.filter with type parameters of type Filter Modifier and Type Field Description private List<Filter>AndFilter. filterComponentsComponents of this filter.private List<Filter>OrFilter. filterComponentsComponents of this filter.Methods in org.ldaptive.filter that return Filter Modifier and Type Method Description FilterNotFilter. getComponent()Returns the component of this filter.FilterAbstractFilterFunction. parse(String filter)FilterFilterFunction. parse(String filter)Parses the supplied string representation of a filter.static FilterFilterParser. parse(String filter)Parse the supplied filter string.protected abstract FilterAbstractFilterFunction. parseFilterComp(String filter)Inspects the supplied filter string and creates the type of filter it represents.protected FilterDefaultFilterFunction. parseFilterComp(String filter)protected FilterRegexFilterFunction. parseFilterComp(String filter)private FilterDefaultFilterFunction. parseSubstringOrEquality(String attribute, CharBuffer cb)Parses the supplied buffer and returns either a substring or equality filter.private FilterAbstractFilterFunction. readNextComponent(String filter, int depth)Reads the next component contained in the supplied filter.Methods in org.ldaptive.filter that return types with arguments of type Filter Modifier and Type Method Description List<Filter>AndFilter. getComponents()Returns the components of this filter.List<Filter>OrFilter. getComponents()Returns the components of this filter.Methods in org.ldaptive.filter with parameters of type Filter Modifier and Type Method Description voidAndFilter. add(Filter component)voidFilterSet. add(Filter filter)Adds a search filter to this set.voidNotFilter. add(Filter component)voidOrFilter. add(Filter component)Constructors in org.ldaptive.filter with parameters of type Filter Constructor Description AndFilter(Filter... components)Creates a new and filter.NotFilter(Filter component)Creates a new not filter.OrFilter(Filter... components)Creates a new or filter. -
Uses of Filter in org.ldaptive.url
Fields in org.ldaptive.url declared as Filter Modifier and Type Field Description (package private) static FilterUrl. DEFAULT_PARSED_FILTERDefault parsed attribute filter.private FilterUrl. parsedFilterParsed filter of the ldap url.Methods in org.ldaptive.url that return Filter Modifier and Type Method Description FilterUrl. getParsedFilter()Returns the parsed filter.Methods in org.ldaptive.url with parameters of type Filter Modifier and Type Method Description protected abstract StringAbstractUrlFormatter. formatFilter(String filter, Filter parsedFilter)Formats the supplied filter string.protected StringMinimalUrlFormatter. formatFilter(String filter, Filter parsedFilter)
-