01: /***
02: * jwma Java WebMail
03: * Copyright (c) 2000-2003 jwma team
04: *
05: * jwma is free software; you can distribute and use this source
06: * under the terms of the BSD-style license received along with
07: * the distribution.
08: ***/package dtw.webmail.util;
09:
10: import dtw.webmail.model.JwmaContact;
11:
12: /**
13: * Interface defining a<tt>ContactFilter</tt>.
14: *
15: * @author Dieter Wimberger
16: * @version 0.9.7 07/02/2003
17: */
18: public interface ContactFilter {
19:
20: public boolean isFiltered(JwmaContact contact);
21:
22: public boolean isAllowed(JwmaContact contact);
23:
24: }//interface ContactFilter
|