Class AndFilter
java.lang.Object
org.identityconnectors.framework.common.objects.filter.CompositeFilter
org.identityconnectors.framework.common.objects.filter.AndFilter
- All Implemented Interfaces:
Filter
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionbooleanaccept(ConnectorObject obj) Ands the left and right filters.<R,P> R accept(FilterVisitor<R, P> v, P p) Applies aFilterVisitorto thisFilter.getLeft()getRight()toString()
-
Constructor Details
-
AndFilter
And the the left and right filters. -
AndFilter
-
-
Method Details
-
accept
Ands the left and right filters.- Parameters:
obj- - The specified ConnectorObject.- Returns:
trueif the object matches (that is, satisfies all selection criteria of) this filter; otherwisefalse.- See Also:
-
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.
-
getLeft
- Overrides:
getLeftin classCompositeFilter- Returns:
- the left side of the composite.
-
getRight
- Overrides:
getRightin classCompositeFilter- Returns:
- the right side of the composite.
-
getFilters
- Overrides:
getFiltersin classCompositeFilter
-
toString
-