Uses of Interface
org.identityconnectors.framework.common.objects.filter.Filter
-
Packages that use Filter Package Description org.identityconnectors.framework.api.operations org.identityconnectors.framework.common.objects.filter -
-
Uses of Filter in org.identityconnectors.framework.api.operations
Methods in org.identityconnectors.framework.api.operations with parameters of type Filter Modifier and Type Method Description SearchResultSearchApiOp. search(ObjectClass objectClass, Filter filter, ResultsHandler handler, OperationOptions options)Search the resource for all objects that match the object class and filter. -
Uses of Filter in org.identityconnectors.framework.common.objects.filter
Classes in org.identityconnectors.framework.common.objects.filter that implement Filter Modifier and Type Class Description classAndFilterclassAttributeFilterclassComparableAttributeFilterFilter for an attribute value that is comparable.classCompositeFilterUseful for the AND, OR, XOR, etc..classContainsAllValuesFilterclassContainsFilterclassEndsWithFilterclassEqualsFilterclassEqualsIgnoreCaseFilterclassExternallyChainedFilterExternally chained filters e.g. the filter implementing case insensitive searches.classGreaterThanFilterclassGreaterThanOrEqualFilterclassLessThanFilterclassLessThanOrEqualFilterclassNotFilterProxy the filter to return the negative of the value.classOrFilterclassSingleValueAttributeFilterGet a single value out of the attribute to test w/.classStartsWithFilterclassStringFilterFilter based on strings.Methods in org.identityconnectors.framework.common.objects.filter that return Filter Modifier and Type Method Description static FilterFilterBuilder. and(Collection<Filter> subFilters)Creates a new "AND" filter using the provided list of sub-filters.static FilterFilterBuilder. and(Filter... subFilters)Creates a new "AND" filter using the provided list of sub-filters.static FilterFilterBuilder. and(Filter leftHandSide, Filter rightHandSide)Logically "ANDs" together the two specified instances ofFilter.static FilterFilterBuilder. contains(Attribute attr)Select only an inputConnectorObjectwith a value for the specifiedAttributethat contains as any substring the value of the specifiedAttribute.static FilterFilterBuilder. containsAllValues(Attribute attr)Select only an inputConnectorObjectwith a value for the specifiedAttributethat contains all the values from the specifiedAttribute.static FilterFilterBuilder. endsWith(Attribute attr)Select only an inputConnectorObjectwith a value for the specifiedAttributethat contains as a final substring the value of the specifiedAttribute.static FilterFilterBuilder. equalsIgnoreCase(Attribute attr)Select only an inputConnectorObjectwith a value for the specifiedAttributethat is equal to, not considering the case the value of the specifiedAttribute.static FilterFilterBuilder. equalTo(Attribute attr)Select only an inputConnectorObjectwith a value for the specifiedAttributethat is lexically equal to the value of the specifiedAttribute.FilterExternallyChainedFilter. getFilter()FilterNotFilter. getFilter()Get the internal filter that is being negated.FilterAndFilter. getLeft()FilterCompositeFilter. getLeft()FilterOrFilter. getLeft()FilterAndFilter. getRight()FilterCompositeFilter. getRight()FilterOrFilter. getRight()static FilterFilterBuilder. greaterThan(Attribute attr)Select only an inputConnectorObjectwith a value for the specifiedAttributethat is lexically greater than the value of the specifiedAttribute.static FilterFilterBuilder. greaterThanOrEqualTo(Attribute attr)Select only an inputConnectorObjectwith a value for the specifiedAttributethat is lexically greater than or equal to the value of the specifiedAttribute.static FilterFilterBuilder. lessThan(Attribute attr)Select only an inputConnectorObjectwith a value for the specifiedAttributethat is lexically less than the value of the specifiedAttribute.static FilterFilterBuilder. lessThanOrEqualTo(Attribute attr)Select only an inputConnectorObjectwith a value for the specifiedAttributethat is lexically less than or equal to the value of the specifiedAttribute.static FilterFilterBuilder. not(Filter filter)Logically negate the specifiedFilter.static FilterFilterBuilder. or(Collection<Filter> subFilters)Creates a new "OR" filter using the provided list of sub-filters.static FilterFilterBuilder. or(Filter... subFilters)Creates a new "OR" filter using the provided list of sub-filters.static FilterFilterBuilder. or(Filter leftHandSide, Filter rightHandSide)Logically "OR" together the two specified instances ofFilter.static FilterFilterBuilder. startsWith(Attribute attr)Select only an inputConnectorObjectwith a value for the specifiedAttributethat contains as an initial substring the value of the specifiedAttribute.Methods in org.identityconnectors.framework.common.objects.filter that return types with arguments of type Filter Modifier and Type Method Description Collection<Filter>AndFilter. getFilters()Collection<Filter>CompositeFilter. getFilters()Collection<Filter>OrFilter. getFilters()Methods in org.identityconnectors.framework.common.objects.filter with parameters of type Filter Modifier and Type Method Description static FilterFilterBuilder. and(Filter... subFilters)Creates a new "AND" filter using the provided list of sub-filters.static FilterFilterBuilder. and(Filter leftHandSide, Filter rightHandSide)Logically "ANDs" together the two specified instances ofFilter.static FilterFilterBuilder. not(Filter filter)Logically negate the specifiedFilter.static FilterFilterBuilder. or(Filter... subFilters)Creates a new "OR" filter using the provided list of sub-filters.static FilterFilterBuilder. or(Filter leftHandSide, Filter rightHandSide)Logically "OR" together the two specified instances ofFilter.List<T>AbstractFilterTranslator. translate(Filter filter)Main method to be called to translate a filterList<T>FilterTranslator. translate(Filter filter)RFilterVisitor. visitExtendedFilter(P p, Filter filter)Visits acomparisonfilter.Method parameters in org.identityconnectors.framework.common.objects.filter with type arguments of type Filter Modifier and Type Method Description static FilterFilterBuilder. and(Collection<Filter> subFilters)Creates a new "AND" filter using the provided list of sub-filters.static FilterFilterBuilder. or(Collection<Filter> subFilters)Creates a new "OR" filter using the provided list of sub-filters.Constructors in org.identityconnectors.framework.common.objects.filter with parameters of type Filter Constructor Description AndFilter(Filter left, Filter right)And the the left and right filters.ExternallyChainedFilter(Filter filter)NotFilter(Filter filter)Take the value returned from the internal filter and NOT it.OrFilter(Filter left, Filter right)Takes the result of the left and right filter and ORs them.Constructor parameters in org.identityconnectors.framework.common.objects.filter with type arguments of type Filter Constructor Description AndFilter(Collection<Filter> filters)OrFilter(Collection<Filter> filters)
-