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/IMAP__ServiceCheck.java
Revision: 1.5
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.4: +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

# User Rev Content
1 tdb 1.1 //---PACKAGE DECLARATION---
2 tdb 1.5 package uk.org.iscream.filter.plugins;
3 tdb 1.1
4     //---IMPORTS---
5 tdb 1.5 import uk.org.iscream.filter.ServiceCheckSkeleton;
6 tdb 1.1 import java.net.*;
7     import java.io.*;
8    
9     /**
10     * A quick IMAP service checker.
11     *
12 tdb 1.2 * @author $Author: tdb1 $
13 tdb 1.5 * @version $Id: IMAP__ServiceCheck.java,v 1.4 2001/03/08 00:35:02 tdb1 Exp $
14 tdb 1.1 */
15 tdb 1.3 public class IMAP__ServiceCheck extends ServiceCheckSkeleton {
16 tdb 1.1
17     //---FINAL ATTRIBUTES---
18    
19     /**
20     * The current CVS revision of this class
21     */
22 tdb 1.5 public final String REVISION = "$Revision: 1.4 $";
23 tdb 1.1
24     public final String DESC = "Checks that an IMAP 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 tdb 1.3 return checkService(hostname, 143, "* OK", "IMAP");
40 tdb 1.4 }
41    
42     /**
43     * return the String representation of what the filter does
44     */
45     public String getDescription(){
46     return DESC;
47 tdb 1.1 }
48    
49     //---PRIVATE METHODS---
50    
51     //---ACCESSOR/MUTATOR METHODS---
52    
53     //---ATTRIBUTES---
54    
55     //---STATIC ATTRIBUTES---
56    
57     }