| 1 |
//---PACKAGE DECLARATION--- |
| 2 |
package uk.org.iscream.cms.server.filter; |
| 3 |
|
| 4 |
//---IMPORTS--- |
| 5 |
import uk.org.iscream.cms.server.util.XMLPacket; |
| 6 |
|
| 7 |
/** |
| 8 |
* An interface to which a Plugin for a Service Check must adhere. |
| 9 |
* |
| 10 |
* @author $Author: tdb1 $ |
| 11 |
* @version $Id: PluginServiceCheck.java,v 1.3 2001/03/14 23:25:29 tdb1 Exp $ |
| 12 |
*/ |
| 13 |
public interface PluginServiceCheck { |
| 14 |
|
| 15 |
//---STATIC METHODS--- |
| 16 |
|
| 17 |
//---CONSTRUCTORS--- |
| 18 |
|
| 19 |
//---PUBLIC METHODS--- |
| 20 |
|
| 21 |
/** |
| 22 |
* Performs a check on the service, and returns the |
| 23 |
* XML for the service check |
| 24 |
* |
| 25 |
* @param hostname the hostname to run the checks on |
| 26 |
* @return the XML containing results from the check |
| 27 |
*/ |
| 28 |
public String runServiceCheck(String hostname); |
| 29 |
|
| 30 |
|
| 31 |
/** |
| 32 |
* Return a String representation of what the plugin service |
| 33 |
* check does (e.g. "Checks the xxx service is running on host") |
| 34 |
* |
| 35 |
* @return the description |
| 36 |
*/ |
| 37 |
public String getDescription(); |
| 38 |
|
| 39 |
//---PRIVATE METHODS--- |
| 40 |
|
| 41 |
//---ACCESSOR/MUTATOR METHODS--- |
| 42 |
|
| 43 |
} |