| Package | Description |
|---|---|
| org.flowable.task.api.history |
| Modifier and Type | Method and Description |
|---|---|
HistoricTaskInstanceQuery |
HistoricTaskInstanceQuery.finished()
Only select historic task instances which are finished.
|
HistoricTaskInstanceQuery |
HistoricTaskInstanceQuery.orderByDeleteReason()
Order by task delete reason (needs to be followed by
Query.asc() or Query.desc()). |
HistoricTaskInstanceQuery |
HistoricTaskInstanceQuery.orderByHistoricActivityInstanceId()
Order by the historic activity instance id this task was used in (needs to be followed by
Query.asc() or Query.desc()). |
HistoricTaskInstanceQuery |
HistoricTaskInstanceQuery.orderByHistoricTaskInstanceDuration()
Order by duration (needs to be followed by
Query.asc() or Query.desc()). |
HistoricTaskInstanceQuery |
HistoricTaskInstanceQuery.orderByHistoricTaskInstanceEndTime()
Order by end time (needs to be followed by
Query.asc() or Query.desc()). |
HistoricTaskInstanceQuery |
HistoricTaskInstanceQuery.orderByHistoricTaskInstanceStartTime()
Order by start time (needs to be followed by
Query.asc() or Query.desc()). |
HistoricTaskInstanceQuery |
HistoricTaskInstanceQuery.processFinished()
Only select historic task instances which are part of a process instance which is already finished.
|
HistoricTaskInstanceQuery |
HistoricTaskInstanceQuery.processUnfinished()
Only select historic task instances which are part of a process instance which is not finished yet.
|
HistoricTaskInstanceQuery |
HistoricTaskInstanceQuery.taskCompletedAfter(Date endDate)
Only select select historic task instances which are completed after the given date
|
HistoricTaskInstanceQuery |
HistoricTaskInstanceQuery.taskCompletedBefore(Date endDate)
Only select select historic task instances which are completed before the given date
|
HistoricTaskInstanceQuery |
HistoricTaskInstanceQuery.taskCompletedOn(Date endDate)
Only select select historic task instances which are completed on the given date
|
HistoricTaskInstanceQuery |
HistoricTaskInstanceQuery.taskDeleteReason(String taskDeleteReason)
Only select historic task instances with the given task delete reason.
|
HistoricTaskInstanceQuery |
HistoricTaskInstanceQuery.taskDeleteReasonLike(String taskDeleteReasonLike)
Only select historic task instances with a task description like the given value.
|
HistoricTaskInstanceQuery |
HistoricTaskInstanceQuery.taskParentTaskId(String parentTaskId)
Only select subtasks of the given parent task
|
HistoricTaskInstanceQuery |
HistoricTaskInstanceQuery.unfinished()
Only select historic task instances which aren't finished yet.
|
| Modifier and Type | Method and Description |
|---|---|
void |
HistoricTaskQueryInterceptor.afterHistoricTaskQueryExecute(HistoricTaskInstanceQuery taskQuery,
List<HistoricTaskInstance> historicTasks) |
void |
HistoricTaskQueryInterceptor.beforeHistoricTaskQueryExecute(HistoricTaskInstanceQuery taskQuery) |
Copyright © 2019 Flowable. All rights reserved.