Interface FilterAttachable<E>

    • Method Detail

      • addFilter

        void addFilter​(Filter<E> newFilter)
        Deprecated.
        Add a filter.
      • clearAllFilters

        void clearAllFilters()
        Deprecated.
      • getCopyOfAttachedFiltersList

        java.util.List<Filter<E>> getCopyOfAttachedFiltersList()
        Deprecated.
        Get a copy of all the filters contained within this FilterAttachable object.
        Returns:
        all attached filters as a list
      • getFilterChainDecision

        FilterReply getFilterChainDecision​(E event)
        Deprecated.
        Loop through the filters in the chain. As soon as a filter decides on ACCEPT or DENY, then that value is returned. If all of the filters return NEUTRAL, then NEUTRAL is returned.