1 45 package org.openejb.client; 46 47 52 public interface RequestMethods { 53 54 public static final byte EJB_REQUEST = (byte)0; 55 public static final byte JNDI_REQUEST = (byte)1; 56 public static final byte AUTH_REQUEST = (byte)2; 57 public static final byte STOP_REQUEST_Quit = (byte)'Q'; 58 public static final byte STOP_REQUEST_quit = (byte)'q'; 59 public static final byte STOP_REQUEST_Stop = (byte)'S'; 60 public static final byte STOP_REQUEST_stop = (byte)'s'; 61 62 public static final int EJB_HOME_GET_EJB_META_DATA = 1; 66 public static final int EJB_HOME_GET_HOME_HANDLE = 2; 67 public static final int EJB_HOME_REMOVE_BY_HANDLE = 3; 68 public static final int EJB_HOME_REMOVE_BY_PKEY = 4; 69 public static final int EJB_HOME_FIND = 9; 74 public static final int EJB_HOME_CREATE = 10; 75 public static final int EJB_OBJECT_GET_EJB_HOME = 14; 79 public static final int EJB_OBJECT_GET_HANDLE = 15; 80 public static final int EJB_OBJECT_GET_PRIMARY_KEY = 16; 81 public static final int EJB_OBJECT_IS_IDENTICAL = 17; 82 public static final int EJB_OBJECT_REMOVE = 18; 83 public static final int EJB_OBJECT_BUSINESS_METHOD = 23; 88 public static final int JNDI_LOOKUP = 27; 92 public static final int JNDI_LIST = 28; 93 public static final int JNDI_LIST_BINDINGS = 29; 94 95 96 } 97 98 | Popular Tags |