Interface ITasks


public interface ITasks
Provides access to the tasks of a case.
Since:
9.2
API:
This is a public API.
  • Method Details

    • all

      List<ITask> all()
      Returns all tasks. If the case is a business case also the tasks of the sub cases will be returned. The order of the tasks is not defined.
      Returns:
      all tasks
      API:
      This public API is available in IvyScript and Java. It has the visibility ADVANCED.
    • allActive

      List<ITask> allActive()
      Returns all tasks in active state. If the case is a business case also the active tasks of the sub cases will be returned. The order of the tasks is not defined.
      Returns:
      all active tasks
      API:
      This public API is available in IvyScript and Java. It has the visibility ADVANCED.
    • own

      List<ITask> own()
      Returns own tasks. If the case is a business case the tasks of the sub cases will NOT be returned. The order of the tasks is not defined.
      Returns:
      own tasks
      API:
      This public API is available in IvyScript and Java. It has the visibility ADVANCED.
    • ownActive

      List<ITask> ownActive()
      Returns own tasks in active state. If the case is a business case the active tasks of the sub cases will NOT be returned. The order of the tasks is not defined.
      Returns:
      own active tasks
      API:
      This public API is available in IvyScript and Java. It has the visibility ADVANCED.