1 package com.atlassian.core.util.filter;
2
3 /**
4 * Defines what objects should be filtered out of a list.
5 */
6 public interface Filter
7 {
8 /**
9 * Should an object be allowed through the filter?
10 *
11 * @return true if the object can pass through the filter, false
12 * if the object is rejected by the filter.
13 */
14 boolean isIncluded(Object o);
15 }