Federico Barbieri wrote:
> Serge can you update the matcher interface?
Started working on it this evening... 2 questions though...
First, since we don't want the Matcher object to change the Mail object
(except the recipients), what about
Vector match(Mail mail)
and just return the Vector of recipients. If the matcher is checking
some other setting and will be either all or nothing, for a match you
can do
return mail.getRecipients();
and for no match you could do...
return new Vector();
or
return null;
Second, can I use JDK 1.2 features (specifically collections API)? I
guess I can stick with the VectorUtils utility class.
Serge Knystautas
Loki Technologies
http://www.lokitech.com/
------------------------------------------------------------
To subscribe: [EMAIL PROTECTED]
To unsubscribe: [EMAIL PROTECTED]
Archives and Other: <http://java.apache.org/>
Problems?: [EMAIL PROTECTED]