HaNET.java 430 B

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