| 1 |
< |
//---PACKAGE DECLARATION--- |
| 2 |
< |
package uk.ac.ukc.iscream.filter; |
| 3 |
< |
|
| 4 |
< |
//---IMPORTS--- |
| 5 |
< |
import uk.ac.ukc.iscream.util.XMLPacket; |
| 6 |
< |
|
| 7 |
< |
/** |
| 8 |
< |
* the plugin filter interface |
| 9 |
< |
* |
| 10 |
< |
* @author $Author$ |
| 11 |
< |
* @version $Id$ |
| 12 |
< |
*/ |
| 13 |
< |
public interface PluginFilter { |
| 14 |
< |
|
| 15 |
< |
//---STATIC METHODS--- |
| 16 |
< |
|
| 17 |
< |
//---CONSTRUCTORS--- |
| 18 |
< |
|
| 19 |
< |
//---PUBLIC METHODS--- |
| 20 |
< |
|
| 21 |
< |
// return true if the filter wishes to allow the XMLPacket to pass |
| 22 |
< |
// to the next stage of the plugin filter pipeline. return false |
| 23 |
< |
// otherwise. |
| 24 |
< |
public boolean runFilter(XMLPacket packet); |
| 25 |
< |
|
| 26 |
< |
|
| 27 |
< |
// return a String representation of what the plugin filter |
| 28 |
< |
// does (e.g. "Rejects packets if x y and z") |
| 29 |
< |
public String getDescription(); |
| 30 |
< |
|
| 31 |
< |
//---PRIVATE METHODS--- |
| 32 |
< |
|
| 33 |
< |
//---ACCESSOR/MUTATOR METHODS--- |
| 34 |
< |
|
| 35 |
< |
} |
| 1 |
> |
//---PACKAGE DECLARATION--- |
| 2 |
> |
package uk.ac.ukc.iscream.filter; |
| 3 |
> |
|
| 4 |
> |
//---IMPORTS--- |
| 5 |
> |
import uk.ac.ukc.iscream.util.XMLPacket; |
| 6 |
> |
|
| 7 |
> |
/** |
| 8 |
> |
* the plugin filter interface |
| 9 |
> |
* |
| 10 |
> |
* @author $Author$ |
| 11 |
> |
* @version $Id$ |
| 12 |
> |
*/ |
| 13 |
> |
public interface PluginFilter { |
| 14 |
> |
|
| 15 |
> |
//---STATIC METHODS--- |
| 16 |
> |
|
| 17 |
> |
//---CONSTRUCTORS--- |
| 18 |
> |
|
| 19 |
> |
//---PUBLIC METHODS--- |
| 20 |
> |
|
| 21 |
> |
/** |
| 22 |
> |
* Return true if the filter wishes to allow the XMLPacket to pass |
| 23 |
> |
* to the next stage of the plugin filter pipeline. return false |
| 24 |
> |
* otherwise. |
| 25 |
> |
* |
| 26 |
> |
* @param packet the packet to filter on |
| 27 |
> |
*/ |
| 28 |
> |
public boolean runFilter(XMLPacket packet); |
| 29 |
> |
|
| 30 |
> |
|
| 31 |
> |
/** |
| 32 |
> |
* Return a String representation of what the plugin filter |
| 33 |
> |
* does (e.g. "Rejects packets if x y and z") |
| 34 |
> |
* |
| 35 |
> |
* @return the description |
| 36 |
> |
*/ |
| 37 |
> |
public String getDescription(); |
| 38 |
> |
|
| 39 |
> |
//---PRIVATE METHODS--- |
| 40 |
> |
|
| 41 |
> |
//---ACCESSOR/MUTATOR METHODS--- |
| 42 |
> |
|
| 43 |
> |
} |