ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/projects/cms/source/server/uk/org/iscream/cms/server/filter/plugins/SMTP__ServiceCheck.java
Revision: 1.8
Committed: Wed Mar 14 23:25:29 2001 UTC (23 years, 2 months ago) by tdb
Branch: MAIN
CVS Tags: PROJECT_COMPLETION
Changes since 1.7: +4 -4 lines
Log Message:
The whole server package structure has been changed.
Old Package: uk.ac.ukc.iscream.*
New Package: uk.org.iscream.*

File Contents

# Content
1 //---PACKAGE DECLARATION---
2 package uk.org.iscream.filter.plugins;
3
4 //---IMPORTS---
5 import uk.org.iscream.filter.ServiceCheckSkeleton;
6 import java.net.*;
7 import java.io.*;
8
9 /**
10 * A quick SMTP service checker.
11 *
12 * @author $Author: tdb1 $
13 * @version $Id: SMTP__ServiceCheck.java,v 1.7 2001/03/08 00:35:02 tdb1 Exp $
14 */
15 public class SMTP__ServiceCheck extends ServiceCheckSkeleton {
16
17 //---FINAL ATTRIBUTES---
18
19 /**
20 * The current CVS revision of this class
21 */
22 public final String REVISION = "$Revision: 1.7 $";
23
24 public final String DESC = "Checks that an SMTP server is alive.";
25
26 //---STATIC METHODS---
27
28 //---CONSTRUCTORS---
29
30 //---PUBLIC METHODS---
31
32 /**
33 * Performs the service check on a given host.
34 *
35 * @param hostname the host to check
36 * @return XML data representing the result of the test
37 */
38 public String runServiceCheck(String hostname){
39 return checkService(hostname, 25, "220", "SMTP");
40 }
41
42 /**
43 * return the String representation of what the filter does
44 */
45 public String getDescription(){
46 return DESC;
47 }
48
49 //---PRIVATE METHODS---
50
51 //---ACCESSOR/MUTATOR METHODS---
52
53 //---ATTRIBUTES---
54
55 //---STATIC ATTRIBUTES---
56
57 }