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 Details

    • PassThroughFilter

      public PassThroughFilter()
  • Method Details

    • accept

      public boolean accept(ConnectorObject obj)
      Description copied from interface: Filter
      Determines whether the specified ConnectorObject matches this filter.
      Specified by:
      accept in interface Filter
      Parameters:
      obj - - The specified ConnectorObject.
      Returns:
      true if the object matches (that is, satisfies all selection criteria of) this filter; otherwise false.
    • accept

      public <R, P> R accept(FilterVisitor<R,P> v, P p)
      Description copied from interface: Filter
      Applies a FilterVisitor to this Filter.
      Specified by:
      accept in interface Filter
      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.