| Package | Description |
|---|---|
| org.flowable.cmmn.api | |
| org.flowable.cmmn.engine.impl | |
| org.flowable.cmmn.rest.service.api | |
| org.flowable.cmmn.rest.service.api.history.task | |
| org.flowable.engine |
Public API of the Flowable engine.
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 Deployments.RuntimeService: For starting and searching ProcessInstances.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. |
| org.flowable.engine.impl |
API implementation classes, which shouldn't directly be used by end-users.
|
| org.flowable.rest.service.api | |
| org.flowable.rest.service.api.history | |
| org.flowable.task.api.history | |
| org.flowable.task.service.impl |
| Modifier and Type | Method and Description |
|---|---|
HistoricTaskInstanceQuery |
CmmnHistoryService.createHistoricTaskInstanceQuery() |
| Modifier and Type | Method and Description |
|---|---|
HistoricTaskInstanceQuery |
CmmnHistoryServiceImpl.createHistoricTaskInstanceQuery() |
| Modifier and Type | Method and Description |
|---|---|
void |
CmmnRestApiInterceptor.accessHistoryTaskInfoWithQuery(HistoricTaskInstanceQuery historicTaskInstanceQuery,
HistoricTaskInstanceQueryRequest request) |
| Modifier and Type | Method and Description |
|---|---|
protected void |
HistoricTaskInstanceBaseResource.addProcessVariables(HistoricTaskInstanceQuery taskInstanceQuery,
List<QueryVariable> variables) |
protected void |
HistoricTaskInstanceBaseResource.addTaskVariables(HistoricTaskInstanceQuery taskInstanceQuery,
List<QueryVariable> variables) |
| Modifier and Type | Method and Description |
|---|---|
HistoricTaskInstanceQuery |
HistoryService.createHistoricTaskInstanceQuery()
Creates a new programmatic query to search for
HistoricTaskInstances. |
| Modifier and Type | Method and Description |
|---|---|
HistoricTaskInstanceQuery |
HistoryServiceImpl.createHistoricTaskInstanceQuery() |
| Modifier and Type | Method and Description |
|---|---|
void |
BpmnRestApiInterceptor.accessHistoryTaskInfoWithQuery(HistoricTaskInstanceQuery historicTaskInstanceQuery,
HistoricTaskInstanceQueryRequest request) |
| Modifier and Type | Method and Description |
|---|---|
protected void |
HistoricTaskInstanceBaseResource.addProcessVariables(HistoricTaskInstanceQuery taskInstanceQuery,
List<QueryVariable> variables) |
protected void |
HistoricTaskInstanceBaseResource.addTaskVariables(HistoricTaskInstanceQuery taskInstanceQuery,
List<QueryVariable> variables) |
| 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.taskWithoutDeleteReason()
Only select historic tasks without a delete reason (completed normally)
|
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) |
| Modifier and Type | Class and Description |
|---|---|
class |
HistoricTaskInstanceQueryImpl |
Copyright © 2023 Flowable. All rights reserved.