Searched defs:StateType (Results 1 - 2 of 2) sorted by relevance

/glassfish-3.1.2/deployment/javax.enterprise.deploy/src/main/java/javax/enterprise/deploy/shared/
H A DStateType.java49 public class StateType class
56 public static final StateType RUNNING = new StateType(0);
60 public static final StateType COMPLETED = new StateType(1);
64 public static final StateType FAILED = new StateType(2);
68 public static final StateType RELEASED = new StateType(3);
78 private static final StateType[] enumValueTabl
90 protected StateType(int value) method in class:StateType
[all...]
/glassfish-3.1.2/common/glassfish-api/src/main/java/org/glassfish/api/admin/
H A DInstanceState.java56 public enum StateType { enum in class:InstanceState
120 public static StateType makeStateType(String s) {
121 for (StateType st : StateType.values()) {
128 private StateType currentState;
131 public InstanceState(StateType st) {
136 public StateType getState() {
140 public void setState(StateType state) {
149 if (currentState == StateType.NEVER_STARTED) {

Completed in 32 milliseconds