- package com.its.common.cluster.vo;
- public final class ClusterNET {
- private ClusterNET() {
- throw new IllegalStateException("HaNET class");
- }
- public static final int CLOSED = 0; /* 종료된 상태 */
- public static final int LOGIN_WAIT = 1; /* 최초 연결후 로그인 기다림 */
- public static final int DATA_TRANS = 2; /* data trans state */
- public static final int TERMINATE = 3;
- }
|