ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/experimental/server/PluginManager/PluginFilter.java
Revision: 1.1
Committed: Fri Dec 1 09:50:35 2000 UTC (23 years, 5 months ago) by pjm2
Branch: MAIN
Log Message:
An experimental Plugin Filter Pipeline "proof of concept" Demonstration.
Run "java PluginDemo" to see what it does.

PluginFilters implement the PluginFilter interface.

File Contents

# Content
1 // the plugin filter interface
2
3 // pjm2@ukc.ac.uk
4
5 interface PluginFilter {
6
7 // return true if the filter wishes to allow the XMLPacket to pass
8 // to the next stage of the plugin filter pipeline. return false
9 // otherwise.
10 public boolean runFilter(XMLPacket packet);
11
12 }