Enum ActivityOperationState

  • All Implemented Interfaces:
    Serializable, Comparable<ActivityOperationState>

    public enum ActivityOperationState
    extends Enum<ActivityOperationState>
    The activity operation state. This enumeration contains the same states as ActivityState, but contains three additional operational states. These additional states indicates that the activity is not yet in the set activity state but operations are in progress to set the activity to that state.
    Since:
    15.05.2006
    API:
    This is a public API.
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
      ACTIVATING
      State ACTIVATING The object is going to state active.
      ACTIVE
      State ACTIVE.
      DEACTIVATING
      State DEACTIVATING The object is going to state inactive.
      INACTIVE
      State INACTIVE The object is not active.
      LOCKED
      State LOCKED.
      LOCKING
      State LOCKING The object is going to state locking.
    • Enum Constant Detail

      • INACTIVE

        public static final ActivityOperationState INACTIVE
        State INACTIVE The object is not active. If one tries to request something he gets a 503 Service Unavailable error.
        API:
        This public API is available in IvyScript and Java. It has the visibility EXPERT.
      • ACTIVE

        public static final ActivityOperationState ACTIVE
        State ACTIVE. The object is active, all request are answered.
        API:
        This public API is available in IvyScript and Java. It has the visibility EXPERT.
      • LOCKED

        public static final ActivityOperationState LOCKED
        State LOCKED. The object is active but locked. New cases can not be started and suspended task's can not be resumed. Requests are answered with a 503 Service Unavailable error if they want to resumed a task or start a new case. Requests to resumed task are handled normally.
        API:
        This public API is available in IvyScript and Java. It has the visibility EXPERT.
      • ACTIVATING

        public static final ActivityOperationState ACTIVATING
        State ACTIVATING The object is going to state active. Some operations are still in progress to set the activity to state active.
        API:
        This public API is available in IvyScript and Java. It has the visibility EXPERT.
      • DEACTIVATING

        public static final ActivityOperationState DEACTIVATING
        State DEACTIVATING The object is going to state inactive. Some operations are still in progress to set the activity to state inactive.
        API:
        This public API is available in IvyScript and Java. It has the visibility EXPERT.
      • LOCKING

        public static final ActivityOperationState LOCKING
        State LOCKING The object is going to state locking. Some operations are still in progress to set the activity to state locked.
        API:
        This public API is available in IvyScript and Java. It has the visibility EXPERT.