OSDN Git Service

Initial commit
[ultramonkey-l7/l7gui.git] / src / src / org / ultramonkey / l7 / controller / ClusterStatus.java
1 package org.ultramonkey.l7.controller;
2
3 /**
4  * <p>class ControlerStatus</p>
5  * <p>Copyright(c) NTT COMWARE 2008</p>
6  * @author nakai
7  */
8 public enum ClusterStatus {
9     /**
10      * cluster is active (running cluster process and having resources)
11      */
12     ACTIVE,
13     /**
14      * cluster is standby (running cluster process and having no resources)
15      */
16     STANDBY,
17     /**
18      * cluster is out of service (
19      */
20     OUT_OF_SERVICE,
21     /**
22      * cluster is single
23      */
24     SINGLE,
25     /**
26      * cluster initial status
27      */
28     NONE
29 }