Package ch.ivyteam.ivy.workflow.task
Interface ITasks
-
public interface ITasksProvides access to the tasks of a case.- Since:
- 9.2
- API:
- This is a public API.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<ITask>all()Returns all tasks.List<ITask>allActive()Returns all tasks inactive state.List<ITask>own()Returns own tasks.List<ITask>ownActive()Returns own tasks inactive state.
-
-
-
Method Detail
-
all
List<ITask> all()
Returns all tasks. If the case is a business case also the tasks of thesub caseswill 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 inactive state. If the case is a business case also the active tasks of thesub caseswill 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 thesub caseswill 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 inactive state. If the case is a business case the active tasks of thesub caseswill 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.
-
-