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.API implementation classes, which shouldn't directly be used by end-users.
-
Uses of HistoricTaskInstanceQuery in org.flowable.cmmn.api
Methods in org.flowable.cmmn.api that return HistoricTaskInstanceQuery -
Uses of HistoricTaskInstanceQuery in org.flowable.cmmn.engine.impl
Methods in org.flowable.cmmn.engine.impl that return HistoricTaskInstanceQuery -
Uses of HistoricTaskInstanceQuery in org.flowable.cmmn.rest.service.api
Methods in org.flowable.cmmn.rest.service.api with parameters of type HistoricTaskInstanceQueryModifier and TypeMethodDescriptionvoid
CmmnRestApiInterceptor.accessHistoryTaskInfoWithQuery
(HistoricTaskInstanceQuery historicTaskInstanceQuery, HistoricTaskInstanceQueryRequest request) -
Uses of HistoricTaskInstanceQuery in org.flowable.cmmn.rest.service.api.history.task
Methods in org.flowable.cmmn.rest.service.api.history.task with parameters of type HistoricTaskInstanceQueryModifier and TypeMethodDescriptionprotected void
HistoricTaskInstanceBaseResource.addProcessVariables
(HistoricTaskInstanceQuery taskInstanceQuery, List<QueryVariable> variables) protected void
HistoricTaskInstanceBaseResource.addTaskVariables
(HistoricTaskInstanceQuery taskInstanceQuery, List<QueryVariable> variables) -
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.engine.impl
Methods in org.flowable.engine.impl that return HistoricTaskInstanceQuery -
Uses of HistoricTaskInstanceQuery in org.flowable.rest.service.api
Methods in org.flowable.rest.service.api with parameters of type HistoricTaskInstanceQueryModifier and TypeMethodDescriptionvoid
BpmnRestApiInterceptor.accessHistoryTaskInfoWithQuery
(HistoricTaskInstanceQuery historicTaskInstanceQuery, HistoricTaskInstanceQueryRequest request) -
Uses of HistoricTaskInstanceQuery in org.flowable.rest.service.api.history
Methods in org.flowable.rest.service.api.history with parameters of type HistoricTaskInstanceQueryModifier and TypeMethodDescriptionprotected void
HistoricTaskInstanceBaseResource.addProcessVariables
(HistoricTaskInstanceQuery taskInstanceQuery, List<QueryVariable> variables) protected void
HistoricTaskInstanceBaseResource.addTaskVariables
(HistoricTaskInstanceQuery taskInstanceQuery, List<QueryVariable> variables) -
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) -
Uses of HistoricTaskInstanceQuery in org.flowable.task.service.impl
Classes in org.flowable.task.service.impl that implement HistoricTaskInstanceQueryMethods in org.flowable.task.service.impl that return HistoricTaskInstanceQueryModifier and TypeMethodDescriptionHistoricTaskInstanceQueryImpl.caseVariableExists
(String name) HistoricTaskInstanceQueryImpl.caseVariableNotExists
(String name) HistoricTaskInstanceQueryImpl.caseVariableValueEquals
(Object variableValue) HistoricTaskInstanceQueryImpl.caseVariableValueEquals
(String variableName, Object variableValue) HistoricTaskInstanceQueryImpl.caseVariableValueEqualsIgnoreCase
(String name, String value) HistoricTaskInstanceQueryImpl.caseVariableValueGreaterThan
(String name, Object value) HistoricTaskInstanceQueryImpl.caseVariableValueGreaterThanOrEqual
(String name, Object value) HistoricTaskInstanceQueryImpl.caseVariableValueLessThan
(String name, Object value) HistoricTaskInstanceQueryImpl.caseVariableValueLessThanOrEqual
(String name, Object value) HistoricTaskInstanceQueryImpl.caseVariableValueLike
(String name, String value) HistoricTaskInstanceQueryImpl.caseVariableValueLikeIgnoreCase
(String name, String value) HistoricTaskInstanceQueryImpl.caseVariableValueNotEquals
(String variableName, Object variableValue) HistoricTaskInstanceQueryImpl.caseVariableValueNotEqualsIgnoreCase
(String name, String value) HistoricTaskInstanceQueryImpl.cmmnDeploymentId
(String cmmnDeploymentId) HistoricTaskInstanceQueryImpl.cmmnDeploymentIdIn
(Collection<String> cmmnDeploymentIds) HistoricTaskInstanceQueryImpl.deploymentId
(String deploymentId) HistoricTaskInstanceQueryImpl.deploymentIdIn
(Collection<String> deploymentIds) HistoricTaskInstanceQueryImpl.endOr()
HistoricTaskInstanceQueryImpl.finished()
HistoricTaskInstanceQueryImpl.ignoreAssigneeValue()
HistoricTaskInstanceQueryImpl.includeCaseVariables()
HistoricTaskInstanceQueryImpl.includeIdentityLinks()
HistoricTaskInstanceQueryImpl.includeProcessVariables()
HistoricTaskInstanceQueryImpl.includeTaskLocalVariables()
HistoricTaskInstanceQueryImpl.or()
HistoricTaskInstanceQueryImpl.orderByCategory()
HistoricTaskInstanceQueryImpl.orderByDueDateNullsFirst()
HistoricTaskInstanceQueryImpl.orderByDueDateNullsLast()
HistoricTaskInstanceQueryImpl.orderByHistoricTaskInstanceStartTime()
HistoricTaskInstanceQueryImpl.orderByTaskAssignee()
HistoricTaskInstanceQueryImpl.orderByTaskCreateTime()
HistoricTaskInstanceQueryImpl.orderByTaskDefinitionKey()
HistoricTaskInstanceQueryImpl.orderByTaskDueDate()
HistoricTaskInstanceQueryImpl.orderByTaskOwner()
HistoricTaskInstanceQueryImpl.orderByTaskPriority()
HistoricTaskInstanceQueryImpl.orderByTenantId()
HistoricTaskInstanceQueryImpl.processCategoryIn
(Collection<String> processCategoryInList) HistoricTaskInstanceQueryImpl.processCategoryNotIn
(Collection<String> processCategoryNotInList) HistoricTaskInstanceQueryImpl.processDefinitionKey
(String processDefinitionKey) HistoricTaskInstanceQueryImpl.processDefinitionKeyIn
(Collection<String> processDefinitionKeys) HistoricTaskInstanceQueryImpl.processDefinitionKeyLike
(String processDefinitionKeyLike) HistoricTaskInstanceQueryImpl.processDefinitionKeyLikeIgnoreCase
(String processDefinitionKeyLikeIgnoreCase) HistoricTaskInstanceQueryImpl.processDefinitionName
(String processDefinitionName) HistoricTaskInstanceQueryImpl.processDefinitionNameLike
(String processDefinitionNameLike) HistoricTaskInstanceQueryImpl.processFinished()
HistoricTaskInstanceQueryImpl.processInstanceBusinessKeyLikeIgnoreCase
(String processInstanceBusinessKeyLikeIgnoreCase) HistoricTaskInstanceQueryImpl.processUnfinished()
HistoricTaskInstanceQueryImpl.processVariableExists
(String name) HistoricTaskInstanceQueryImpl.processVariableNotExists
(String name) HistoricTaskInstanceQueryImpl.processVariableValueEquals
(Object variableValue) HistoricTaskInstanceQueryImpl.processVariableValueEquals
(String variableName, Object variableValue) HistoricTaskInstanceQueryImpl.processVariableValueEqualsIgnoreCase
(String name, String value) HistoricTaskInstanceQueryImpl.processVariableValueGreaterThan
(String name, Object value) HistoricTaskInstanceQueryImpl.processVariableValueGreaterThanOrEqual
(String name, Object value) HistoricTaskInstanceQueryImpl.processVariableValueLessThan
(String name, Object value) HistoricTaskInstanceQueryImpl.processVariableValueLessThanOrEqual
(String name, Object value) HistoricTaskInstanceQueryImpl.processVariableValueLike
(String name, String value) HistoricTaskInstanceQueryImpl.processVariableValueLikeIgnoreCase
(String name, String value) HistoricTaskInstanceQueryImpl.processVariableValueNotEquals
(String variableName, Object variableValue) HistoricTaskInstanceQueryImpl.processVariableValueNotEqualsIgnoreCase
(String name, String value) HistoricTaskInstanceQueryImpl.propagatedStageInstanceId
(String propagatedStageInstanceId) HistoricTaskInstanceQueryImpl.taskAssigned()
HistoricTaskInstanceQueryImpl.taskAssignee
(String taskAssignee) HistoricTaskInstanceQueryImpl.taskAssigneeIds
(Collection<String> assigneeIds) HistoricTaskInstanceQueryImpl.taskAssigneeLike
(String taskAssigneeLike) HistoricTaskInstanceQueryImpl.taskAssigneeLikeIgnoreCase
(String taskAssigneeLikeIgnoreCase) HistoricTaskInstanceQueryImpl.taskCandidateGroup
(String candidateGroup) HistoricTaskInstanceQueryImpl.taskCandidateGroupIn
(Collection<String> candidateGroups) HistoricTaskInstanceQueryImpl.taskCandidateUser
(String candidateUser) HistoricTaskInstanceQueryImpl.taskCategory
(String category) HistoricTaskInstanceQueryImpl.taskCategoryIn
(Collection<String> taskCategoryInList) HistoricTaskInstanceQueryImpl.taskCategoryNotIn
(Collection<String> taskCategoryNotInList) HistoricTaskInstanceQueryImpl.taskClaimedAfter
(Date after) HistoricTaskInstanceQueryImpl.taskClaimedBefore
(Date before) HistoricTaskInstanceQueryImpl.taskClaimedBy
(String claimedBy) HistoricTaskInstanceQueryImpl.taskClaimedOn
(Date claimedTime) HistoricTaskInstanceQueryImpl.taskCompletedAfter
(Date completedAfterDate) HistoricTaskInstanceQueryImpl.taskCompletedBefore
(Date completedBeforeDate) HistoricTaskInstanceQueryImpl.taskCompletedBy
(String completedBy) HistoricTaskInstanceQueryImpl.taskCompletedOn
(Date completedDate) HistoricTaskInstanceQueryImpl.taskCreatedAfter
(Date creationAfterDate) HistoricTaskInstanceQueryImpl.taskCreatedBefore
(Date creationBeforeDate) HistoricTaskInstanceQueryImpl.taskCreatedOn
(Date creationDate) HistoricTaskInstanceQueryImpl.taskDefinitionKey
(String taskDefinitionKey) HistoricTaskInstanceQueryImpl.taskDefinitionKeyLike
(String taskDefinitionKeyLike) HistoricTaskInstanceQueryImpl.taskDefinitionKeys
(Collection<String> taskDefinitionKeys) HistoricTaskInstanceQueryImpl.taskDeleteReason
(String taskDeleteReason) HistoricTaskInstanceQueryImpl.taskDeleteReasonLike
(String taskDeleteReasonLike) HistoricTaskInstanceQueryImpl.taskDescription
(String taskDescription) HistoricTaskInstanceQueryImpl.taskDescriptionLike
(String taskDescriptionLike) HistoricTaskInstanceQueryImpl.taskDescriptionLikeIgnoreCase
(String taskDescriptionLikeIgnoreCase) HistoricTaskInstanceQueryImpl.taskDueAfter
(Date dueAfter) HistoricTaskInstanceQueryImpl.taskDueBefore
(Date dueBefore) HistoricTaskInstanceQueryImpl.taskDueDate
(Date dueDate) HistoricTaskInstanceQueryImpl.taskFormKey
(String formKey) HistoricTaskInstanceQueryImpl.taskIds
(Collection<String> taskIds) HistoricTaskInstanceQueryImpl.taskInProgressStartDueAfter
(Date dueAfter) HistoricTaskInstanceQueryImpl.taskInProgressStartDueBefore
(Date dueBefore) HistoricTaskInstanceQueryImpl.taskInProgressStartDueDate
(Date dueDate) HistoricTaskInstanceQueryImpl.taskInProgressStartedBy
(String startedBy) HistoricTaskInstanceQueryImpl.taskInProgressStartTimeAfter
(Date after) HistoricTaskInstanceQueryImpl.taskInProgressStartTimeBefore
(Date before) HistoricTaskInstanceQueryImpl.taskInProgressStartTimeOn
(Date startTime) HistoricTaskInstanceQueryImpl.taskInvolvedGroups
(Collection<String> involvedGroups) HistoricTaskInstanceQueryImpl.taskInvolvedUser
(String involvedUser) HistoricTaskInstanceQueryImpl.taskMaxPriority
(Integer taskMaxPriority) HistoricTaskInstanceQueryImpl.taskMinPriority
(Integer taskMinPriority) HistoricTaskInstanceQueryImpl.taskNameIn
(Collection<String> taskNameList) HistoricTaskInstanceQueryImpl.taskNameInIgnoreCase
(Collection<String> taskNameList) HistoricTaskInstanceQueryImpl.taskNameLike
(String taskNameLike) HistoricTaskInstanceQueryImpl.taskNameLikeIgnoreCase
(String taskNameLikeIgnoreCase) HistoricTaskInstanceQueryImpl.taskOwnerLike
(String taskOwnerLike) HistoricTaskInstanceQueryImpl.taskOwnerLikeIgnoreCase
(String taskOwnerLikeIgnoreCase) HistoricTaskInstanceQueryImpl.taskParentScopeId
(String parentScopeId) HistoricTaskInstanceQueryImpl.taskParentTaskId
(String parentTaskId) HistoricTaskInstanceQueryImpl.taskPriority
(Integer taskPriority) HistoricTaskInstanceQueryImpl.taskRootScopeId
(String rootScopeId) HistoricTaskInstanceQueryImpl.taskSuspendedAfter
(Date after) HistoricTaskInstanceQueryImpl.taskSuspendedBefore
(Date before) HistoricTaskInstanceQueryImpl.taskSuspendedBy
(String suspendedBy) HistoricTaskInstanceQueryImpl.taskSuspendedOn
(Date suspendedTime) HistoricTaskInstanceQueryImpl.taskTenantId
(String tenantId) HistoricTaskInstanceQueryImpl.taskTenantIdLike
(String tenantIdLike) HistoricTaskInstanceQueryImpl.taskUnassigned()
HistoricTaskInstanceQueryImpl.taskVariableExists
(String name) HistoricTaskInstanceQueryImpl.taskVariableNotExists
(String name) HistoricTaskInstanceQueryImpl.taskVariableValueEquals
(Object variableValue) HistoricTaskInstanceQueryImpl.taskVariableValueEquals
(String variableName, Object variableValue) HistoricTaskInstanceQueryImpl.taskVariableValueEqualsIgnoreCase
(String name, String value) HistoricTaskInstanceQueryImpl.taskVariableValueGreaterThan
(String name, Object value) HistoricTaskInstanceQueryImpl.taskVariableValueGreaterThanOrEqual
(String name, Object value) HistoricTaskInstanceQueryImpl.taskVariableValueLessThan
(String name, Object value) HistoricTaskInstanceQueryImpl.taskVariableValueLessThanOrEqual
(String name, Object value) HistoricTaskInstanceQueryImpl.taskVariableValueLike
(String name, String value) HistoricTaskInstanceQueryImpl.taskVariableValueLikeIgnoreCase
(String name, String value) HistoricTaskInstanceQueryImpl.taskVariableValueNotEquals
(String variableName, Object variableValue) HistoricTaskInstanceQueryImpl.taskVariableValueNotEqualsIgnoreCase
(String name, String value) HistoricTaskInstanceQueryImpl.taskWithFormKey()
HistoricTaskInstanceQueryImpl.taskWithoutCategory()
HistoricTaskInstanceQueryImpl.taskWithoutDeleteReason()
HistoricTaskInstanceQueryImpl.taskWithoutTenantId()
HistoricTaskInstanceQueryImpl.unfinished()
HistoricTaskInstanceQueryImpl.withLocalizationFallback()
HistoricTaskInstanceQueryImpl.withoutTaskDueDate()
HistoricTaskInstanceQueryImpl.withoutTaskInProgressStartDueDate()