Package org.guvnor.ala.runtime
Interface RuntimeState
-
- All Known Implementing Classes:
BaseRuntimeState
public interface RuntimeStateRepresent the State of a particular runtime
-
-
Field Summary
Fields Modifier and Type Field Description static StringREADYCommon state value for indicating that a runtime is ready but not started.static StringRUNNINGCommon state value for indicating that a runtime is running.static StringSTOPPEDCommon state value for indicating that a runtime is stopped.static StringUNKNOWNCommon state value for indicating that a it's not possible to establish current runtime state.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetStartedAt()StringgetState()
-
-
-
Field Detail
-
UNKNOWN
static final String UNKNOWN
Common state value for indicating that a it's not possible to establish current runtime state.- See Also:
- Constant Field Values
-
READY
static final String READY
Common state value for indicating that a runtime is ready but not started.- See Also:
- Constant Field Values
-
RUNNING
static final String RUNNING
Common state value for indicating that a runtime is running.- See Also:
- Constant Field Values
-
STOPPED
static final String STOPPED
Common state value for indicating that a runtime is stopped.- See Also:
- Constant Field Values
-
-