Uses of Interface
org.flowable.task.api.history.HistoricTaskInstanceQuery
Packages that use HistoricTaskInstanceQuery
Package
Description
Public API of the Flowable engine.
Typical usage of the API starts by the creation of a
Through the services obtained from such a
Typical usage of the API starts by the creation of a
ProcessEngineConfiguration
(typically based on a configuration file), from which a ProcessEngine
can be obtained.Through the services obtained from such a
ProcessEngine
, BPM and workflow operation
can be executed:RepositoryService
: Manages Deployment
s.RuntimeService
: For starting and searching ProcessInstance
s.TaskService
: Exposes operations to manage human (standalone) tasks, such as claiming, completing and assigning tasks.IdentityService
: Used for managing users, groups and the relations between them.ManagementService
: Exposes engine administration and maintenance operations,
which have no relation to the runtime exection of business processes.HistoryService
: Exposes information about ongoing and past process instances.FormService
: Access to form data and rendered forms for starting new process instances and completing tasks.-
Uses of HistoricTaskInstanceQuery in org.flowable.cmmn.api
Methods in org.flowable.cmmn.api that return HistoricTaskInstanceQuery -
Uses of HistoricTaskInstanceQuery in org.flowable.engine
Methods in org.flowable.engine that return HistoricTaskInstanceQueryModifier and TypeMethodDescriptionHistoryService.createHistoricTaskInstanceQuery()
Creates a new programmatic query to search forHistoricTaskInstance
s. -
Uses of HistoricTaskInstanceQuery in org.flowable.task.api.history
Methods in org.flowable.task.api.history that return HistoricTaskInstanceQueryModifier and TypeMethodDescriptionHistoricTaskInstanceQuery.finished()
Only select historic task instances which are finished.HistoricTaskInstanceQuery.orderByDeleteReason()
Order by task delete reason (needs to be followed byQuery.asc()
orQuery.desc()
).HistoricTaskInstanceQuery.orderByHistoricActivityInstanceId()
Order by the historic activity instance id this task was used in (needs to be followed byQuery.asc()
orQuery.desc()
).HistoricTaskInstanceQuery.orderByHistoricTaskInstanceDuration()
Order by duration (needs to be followed byQuery.asc()
orQuery.desc()
).HistoricTaskInstanceQuery.orderByHistoricTaskInstanceEndTime()
Order by end time (needs to be followed byQuery.asc()
orQuery.desc()
).HistoricTaskInstanceQuery.orderByHistoricTaskInstanceStartTime()
Order by start time (needs to be followed byQuery.asc()
orQuery.desc()
).HistoricTaskInstanceQuery.processFinished()
Only select historic task instances which are part of a process instance which is already finished.HistoricTaskInstanceQuery.processUnfinished()
Only select historic task instances which are part of a process instance which is not finished yet.HistoricTaskInstanceQuery.taskCompletedAfter
(Date endDate) Only select historic task instances which are completed after the given dateHistoricTaskInstanceQuery.taskCompletedBefore
(Date endDate) Only select historic task instances which are completed before the given dateHistoricTaskInstanceQuery.taskCompletedBy
(String userId) Only select historic task instances which are completed by the given userHistoricTaskInstanceQuery.taskCompletedOn
(Date endDate) Only select historic task instances which are completed on the given dateHistoricTaskInstanceQuery.taskDeleteReason
(String taskDeleteReason) Only select historic task instances with the given task delete reason.HistoricTaskInstanceQuery.taskDeleteReasonLike
(String taskDeleteReasonLike) Only select historic task instances with a task description like the given value.HistoricTaskInstanceQuery.taskParentTaskId
(String parentTaskId) Only select subtasks of the given parent taskHistoricTaskInstanceQuery.taskWithoutDeleteReason()
Only select historic tasks without a delete reason (completed normally)HistoricTaskInstanceQuery.unfinished()
Only select historic task instances which aren't finished yet.Methods in org.flowable.task.api.history with parameters of type HistoricTaskInstanceQueryModifier and TypeMethodDescriptionvoid
HistoricTaskQueryInterceptor.afterHistoricTaskQueryExecute
(HistoricTaskInstanceQuery taskQuery, List<HistoricTaskInstance> historicTasks) void
HistoricTaskQueryInterceptor.beforeHistoricTaskQueryExecute
(HistoricTaskInstanceQuery taskQuery)