KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > coldcore > coloradoftp > core > CoreStatus


1 package com.coldcore.coloradoftp.core;
2
3 /**
4  * Server status.
5  *
6  *
7  * ColoradoFTP - The Open Source FTP Server (http://cftp.coldcore.com)
8  */

9 public enum CoreStatus {
10   STOPPED, //Stopped
11
RUNNING, //Running
12
POISONED //Shutting down and waiting for all connections to disconnect
13
}
14
Popular Tags