01: /* CVS ID: $Id: StatusServer.java,v 1.1.1.1 2002/10/02 18:42:51 wastl Exp $ */
02: package net.wastl.webmail.server;
03:
04: /**
05: * StatusServer.java
06: *
07: * A Server object that can return a status message.
08: *
09: * Created: Sun Dec 31 16:07:04 2000
10: *
11: * @author Sebastian Schaffert
12: * @version
13: */
14:
15: public interface StatusServer {
16:
17: /**
18: * Return a status message.
19: */
20: public String getStatus();
21:
22: } // StatusServer
|