1 28 29 30 package com.caucho.management.j2ee; 31 32 public interface NotificationTypes { 33 36 public static final String J2EE_OBJECT_CREATED = "j2ee.object.created"; 37 38 41 public static final String J2EE_OBJECT_DELETED = "j2ee.object.deleted"; 42 43 46 public static final String J2EE_STATE_STARTING = "j2ee.state.starting"; 47 48 51 public static final String J2EE_STATE_RUNNING = "j2ee.state.running"; 52 53 56 public static final String J2EE_STATE_STOPPING = "j2ee.state.stopping"; 57 58 61 public static final String J2EE_STATE_STOPPED = "j2ee.state.stopped"; 62 63 66 public static final String J2EE_STATE_FAILED = "j2ee.state.failed"; 67 68 71 public static final String J2EE_ATTRIBUTE_CHANGED = "j2ee.attribute.changed"; 72 } 73 | Popular Tags |