Class ExtendedMatchFilter
java.lang.Object
org.identityconnectors.framework.common.objects.filter.AttributeFilter
org.identityconnectors.framework.common.objects.filter.ExtendedMatchFilter
- All Implemented Interfaces:
Filter
-
Constructor Summary
ConstructorsConstructorDescriptionExtendedMatchFilter(String operator, Attribute attribute) Creates a newextended matchfilter using the provided operator and attribute assertion. -
Method Summary
Modifier and TypeMethodDescriptionbooleanaccept(ConnectorObject obj) Framework can not understand this filter, always return true.<R,P> R accept(FilterVisitor<R, P> v, P p) Applies aFilterVisitorto thisFilter.Methods inherited from class org.identityconnectors.framework.common.objects.filter.AttributeFilter
getAttribute, getName, isPresent
-
Constructor Details
-
ExtendedMatchFilter
Creates a newextended matchfilter using the provided operator and attribute assertion.- Parameters:
operator- The operator.attribute- The assertion value.
-
-
Method Details
-
getOperator
-
accept
Framework can not understand this filter, always return true.ConnectorObject.- Parameters:
obj- - The specified ConnectorObject.- Returns:
trueif the object matches (that is, satisfies all selection criteria of) this filter; otherwisefalse.
-
accept
Description copied from interface:FilterApplies aFilterVisitorto thisFilter.- Type Parameters:
R- The return type of the visitor's methods.P- The type of the additional parameters to the visitor's methods.- Parameters:
v- The filter visitor.p- Optional additional visitor parameter.- Returns:
- A result as specified by the visitor.
-