Package org.jboss.ws.api.monitoring
Interface RecordFilter
-
- All Superinterfaces:
Cloneable,Serializable
public interface RecordFilter extends Cloneable, Serializable
A record filter- Since:
- 8-Dec-2007
- Author:
- Alessio Soldano
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Objectclone()RecordFilters must override Object.clone()booleanmatch(Record record)Returns true if the filter matches the given record.
-
-
-
Method Detail
-
match
boolean match(Record record)
Returns true if the filter matches the given record.- Parameters:
record- record- Returns:
- true success
-
clone
Object clone() throws CloneNotSupportedException
RecordFilters must override Object.clone()- Returns:
- Object recode filter
- Throws:
CloneNotSupportedException- exception
-
-