1 17 18 package org.apache.geronimo.kernel.management; 19 20 21 27 public final class NotificationType { 28 private NotificationType() { 29 } 30 31 34 public static final String OBJECT_CREATED = "j2ee.object.created"; 35 36 39 public static final String OBJECT_DELETED = "j2ee.object.deleted"; 40 41 44 public static final String STATE_STARTING = "j2ee.state.starting"; 45 46 49 public static final String STATE_RUNNING = "j2ee.state.running"; 50 51 54 public static final String STATE_STOPPING = "j2ee.state.stopping"; 55 56 59 public static final String STATE_STOPPED = "j2ee.state.stopped"; 60 61 64 public static final String STATE_FAILED = "j2ee.state.failed"; 65 66 69 public static final String ATTRIBUTE_CHANGED = "j2ee.attribute.changed"; 70 71 74 public static final String [] TYPES = new String []{ 75 OBJECT_CREATED, OBJECT_DELETED, 76 STATE_STARTING, STATE_RUNNING, STATE_STOPPING, STATE_STOPPED, STATE_FAILED, 77 ATTRIBUTE_CHANGED 78 }; 79 } 80 | Popular Tags |