Enum ActivityState

    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
      ACTIVE
      State ACTIVE.
      INACTIVE
      State INACTIVE The object is not active.
      LOCKED
      State LOCKED.
    • Enum Constant Detail

      • INACTIVE

        public static final ActivityState 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 ActivityState 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 ActivityState 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.