ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/projects/cms/source/server/uk/org/iscream/cms/server/client/PluginAlerter.java
Revision: 1.6
Committed: Tue May 29 17:02:34 2001 UTC (22 years, 11 months ago) by tdb
Branch: MAIN
Branch point for: SERVER_PIRCBOT
Changes since 1.5: +2 -2 lines
Log Message:
Major change in the java package naming. This has been held off for some time
now, but it really needed doing. The future packaging of all i-scream products
will be;

uk.org.iscream.<product>.<subpart>.*

In the case of the central monitoring system server this will be;

uk.org.iscream.cms.server.*

The whole server has been changed to follow this structure, and tested to a
smallish extent. Further changes in other parts of the CMS will follow.

File Contents

# Content
1 //---PACKAGE DECLARATION---
2 package uk.org.iscream.cms.server.client;
3
4 //---IMPORTS---
5
6 /**
7 * An interface to which a Alerters must adhere.
8 *
9 * This is extended by the AlerterSkeleton, Alerters should
10 * typically extend this class to be a fully functional Alerter.
11 *
12 * @author $Author: ajm4 $
13 * @version $Id: PluginAlerter.java,v 1.5 2001/03/23 02:30:44 ajm4 Exp $
14 */
15 public interface PluginAlerter {
16
17 //---STATIC METHODS---
18
19 //---CONSTRUCTORS---
20
21 //---PUBLIC METHODS---
22
23 /**
24 * Gives a description of what this PluginAlerter does
25 *
26 * @return the description
27 */
28 public String getDescription();
29
30 //---PRIVATE METHODS---
31
32 //---ACCESSOR/MUTATOR METHODS---
33
34 }