Class FilteredResultsHandler.PassThroughFilter
- java.lang.Object
-
- org.identityconnectors.framework.impl.api.local.operations.FilteredResultsHandler.PassThroughFilter
-
- All Implemented Interfaces:
Filter
- Enclosing class:
- FilteredResultsHandler
public static class FilteredResultsHandler.PassThroughFilter extends Object implements Filter
Use a pass through filter to use if a null filter is provided.
-
-
Constructor Summary
Constructors Constructor Description PassThroughFilter()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
accept(ConnectorObject obj)
Determines whether the specifiedConnectorObject
matches this filter.<R,P>
Raccept(FilterVisitor<R,P> v, P p)
Applies aFilterVisitor
to thisFilter
.
-
-
-
Method Detail
-
accept
public boolean accept(ConnectorObject obj)
Description copied from interface:Filter
Determines whether the specifiedConnectorObject
matches this filter.
-
accept
public <R,P> R accept(FilterVisitor<R,P> v, P p)
Description copied from interface:Filter
Applies aFilterVisitor
to thisFilter
.
-
-