1 package org.jacorb.poa; 2 3 22 23 29 public class POAConstants 30 { 31 32 public final static int QUEUE_CAPACITY_INI = 10; 33 public final static int QUEUE_CAPACITY_INC = 10; 34 35 36 public final static int NOT_CALLED = 0; 37 public final static int SHUTDOWN_IN_PROGRESS = 1; 38 public final static int DESTRUCTION_APPARENT = 2; 39 public final static int DESTRUCTION_COMPLETE = 3; 40 41 42 public final static char OBJECT_KEY_SEPARATOR = '/'; 43 public final static byte OBJECT_KEY_SEP_BYTE = (byte)OBJECT_KEY_SEPARATOR; 44 45 public final static byte MASK_BYTE = (byte) '&'; 46 public final static byte MASK_MASK_BYTE = (byte) '&'; 47 public final static byte SEPA_MASK_BYTE = (byte) '%'; 48 49 50 public final static String ROOT_POA_NAME = "RootPOA"; 51 52 53 public final static int ACTIVE = 0; 54 public final static int HOLDING = 1; 55 public final static int DISCARDING = 2; 56 public final static int INACTIVE = 3; 57 public final static int DESTROYED = 4; 58 } 59 | Popular Tags |