| Package | Description |
|---|---|
| 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.engine.runtime |
Classes related to the
RuntimeService. |
| Modifier and Type | Method and Description |
|---|---|
ActivityInstanceQuery |
RuntimeService.createActivityInstanceQuery()
Creates a new
ActivityInstanceQuery instance, that can be used to query activities in the currently running
process instances. |
| Modifier and Type | Class and Description |
|---|---|
class |
ActivityInstanceQueryImpl |
| Modifier and Type | Method and Description |
|---|---|
ActivityInstanceQuery |
ActivityInstanceQueryImpl.deleteReason(String deleteReason) |
ActivityInstanceQuery |
ActivityInstanceQueryImpl.deleteReasonLike(String deleteReasonLike) |
ActivityInstanceQuery |
ActivityInstanceQueryImpl.orderByActivityId() |
| Modifier and Type | Method and Description |
|---|---|
ActivityInstanceQuery |
ActivityInstanceQuery.activityId(String activityId)
Only select activity instances for the given activity (id from BPMN 2.0 XML)
|
ActivityInstanceQuery |
ActivityInstanceQuery.activityInstanceId(String activityInstanceId)
Only select activity instances with the given id (primary key within history tables).
|
ActivityInstanceQuery |
ActivityInstanceQuery.activityName(String activityName)
Only select activity instances for activities with the given name
|
ActivityInstanceQuery |
ActivityInstanceQuery.activityTenantId(String tenantId)
Only select activity instances that have the given tenant id.
|
ActivityInstanceQuery |
ActivityInstanceQuery.activityTenantIdLike(String tenantIdLike)
Only select activity instances with a tenant id like the given one.
|
ActivityInstanceQuery |
ActivityInstanceQuery.activityType(String activityType)
Only select activity instances for activities with the given activity type
|
ActivityInstanceQuery |
ActivityInstanceQuery.activityWithoutTenantId()
Only select activity instances that do not have a tenant id.
|
ActivityInstanceQuery |
ActivityInstanceQuery.deleteReason(String deleteReason)
Only select activity instances with a specific delete reason.
|
ActivityInstanceQuery |
ActivityInstanceQuery.deleteReasonLike(String deleteReasonLike)
Only select activity instances with a delete reason that matches the provided parameter.
|
ActivityInstanceQuery |
ActivityInstanceQuery.executionId(String executionId)
Only select activity instances for the given execution
|
ActivityInstanceQuery |
ActivityInstanceQuery.finished()
Only select activity instances that are finished.
|
ActivityInstanceQuery |
ActivityInstanceQuery.orderByActivityId()
Order by activityId (needs to be followed by
Query.asc() or Query.desc()). |
ActivityInstanceQuery |
ActivityInstanceQuery.orderByActivityInstanceDuration()
Order by duration (needs to be followed by
Query.asc() or Query.desc()). |
ActivityInstanceQuery |
ActivityInstanceQuery.orderByActivityInstanceEndTime()
Order by end (needs to be followed by
Query.asc() or Query.desc()). |
ActivityInstanceQuery |
ActivityInstanceQuery.orderByActivityInstanceId()
Order by id (needs to be followed by
Query.asc() or Query.desc()). |
ActivityInstanceQuery |
ActivityInstanceQuery.orderByActivityInstanceStartTime()
Order by start (needs to be followed by
Query.asc() or Query.desc() ). |
ActivityInstanceQuery |
ActivityInstanceQuery.orderByActivityName()
Order by activityName (needs to be followed by
Query.asc() or Query.desc()). |
ActivityInstanceQuery |
ActivityInstanceQuery.orderByActivityType()
Order by activityType (needs to be followed by
Query.asc() or Query.desc()). |
ActivityInstanceQuery |
ActivityInstanceQuery.orderByExecutionId()
Order by executionId (needs to be followed by
Query.asc() or Query.desc()). |
ActivityInstanceQuery |
ActivityInstanceQuery.orderByProcessDefinitionId()
Order by processDefinitionId (needs to be followed by
Query.asc() or Query.desc()). |
ActivityInstanceQuery |
ActivityInstanceQuery.orderByProcessInstanceId()
Order by processInstanceId (needs to be followed by
Query.asc() or Query.desc()). |
ActivityInstanceQuery |
ActivityInstanceQuery.orderByTenantId()
Order by tenant id (needs to be followed by
Query.asc() or Query.desc()). |
ActivityInstanceQuery |
ActivityInstanceQuery.processDefinitionId(String processDefinitionId)
Only select activity instances for the given process definition
|
ActivityInstanceQuery |
ActivityInstanceQuery.processInstanceId(String processInstanceId)
Only select activity instances with the given process instance.
|
ActivityInstanceQuery |
ActivityInstanceQuery.taskAssignee(String userId)
Only select activity instances for userTask activities assigned to the given user
|
ActivityInstanceQuery |
ActivityInstanceQuery.unfinished()
Only select activity instances that are not finished yet.
|
Copyright © 2020 Flowable. All rights reserved.