| 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.repository |
Classes related to the
RepositoryService. |
| Modifier and Type | Method and Description |
|---|---|
DeploymentQuery |
RepositoryService.createDeploymentQuery()
Query deployment.
|
| Modifier and Type | Class and Description |
|---|---|
class |
DeploymentQueryImpl |
| Modifier and Type | Method and Description |
|---|---|
DeploymentQuery |
RepositoryServiceImpl.createDeploymentQuery() |
DeploymentQuery |
DeploymentQueryImpl.deploymentDerivedFrom(String deploymentId) |
DeploymentQuery |
DeploymentQueryImpl.orderByDeploymentId() |
DeploymentQuery |
DeploymentQueryImpl.orderByDeploymentName() |
DeploymentQuery |
DeploymentQueryImpl.orderByDeploymentTime() |
DeploymentQuery |
DeploymentQueryImpl.orderByTenantId() |
DeploymentQuery |
DeploymentQueryImpl.parentDeploymentId(String parentDeploymentId) |
DeploymentQuery |
DeploymentQueryImpl.parentDeploymentIdLike(String parentDeploymentIdLike) |
DeploymentQuery |
DeploymentQueryImpl.parentDeploymentIds(List<String> parentDeploymentIds) |
| Modifier and Type | Method and Description |
|---|---|
DeploymentQuery |
DeploymentQuery.deploymentCategory(String category)
Only select deployments with the given category.
|
DeploymentQuery |
DeploymentQuery.deploymentCategoryLike(String categoryLike)
Only select deployments with a category like the given string.
|
DeploymentQuery |
DeploymentQuery.deploymentCategoryNotEquals(String categoryNotEquals)
Only select deployments that have a different category then the given one.
|
DeploymentQuery |
DeploymentQuery.deploymentDerivedFrom(String deploymentId)
Only select deployments that are derived from the given deployment.
|
DeploymentQuery |
DeploymentQuery.deploymentEngineVersion(String engineVersion)
Only select deployment that have the given engine version.
|
DeploymentQuery |
DeploymentQuery.deploymentId(String deploymentId)
Only select deployments with the given deployment id.
|
DeploymentQuery |
DeploymentQuery.deploymentIds(List<String> deploymentId)
Only select deployments with an id in the given set of ids.
|
DeploymentQuery |
DeploymentQuery.deploymentKey(String key)
Only select deployments with the given key.
|
DeploymentQuery |
DeploymentQuery.deploymentKeyLike(String keyLike)
Only select deployments with a key like the given string.
|
DeploymentQuery |
DeploymentQuery.deploymentName(String name)
Only select deployments with the given name.
|
DeploymentQuery |
DeploymentQuery.deploymentNameLike(String nameLike)
Only select deployments with a name like the given string.
|
DeploymentQuery |
DeploymentQuery.deploymentTenantId(String tenantId)
Only select deployment that have the given tenant id.
|
DeploymentQuery |
DeploymentQuery.deploymentTenantIdLike(String tenantIdLike)
Only select deployments with a tenant id like the given one.
|
DeploymentQuery |
DeploymentQuery.deploymentWithoutTenantId()
Only select deployments that do not have a tenant id.
|
DeploymentQuery |
DeploymentQuery.latest()
Only select deployments where the deployment time is the latest value.
|
DeploymentQuery |
DeploymentQuery.orderByDeploymentId()
Order by deployment id (needs to be followed by
Query.asc() or Query.desc()). |
DeploymentQuery |
DeploymentQuery.orderByDeploymentName()
Order by deployment name (needs to be followed by
Query.asc() or Query.desc()). |
DeploymentQuery |
DeploymentQuery.orderByDeploymentTime()
Order by deployment time (needs to be followed by
Query.asc() or Query.desc()). |
DeploymentQuery |
DeploymentQuery.orderByTenantId()
Order by tenant id (needs to be followed by
Query.asc() or Query.desc()). |
DeploymentQuery |
DeploymentQuery.parentDeploymentId(String parentDeploymentId)
Only select deployments that have the given parent deployment id.
|
DeploymentQuery |
DeploymentQuery.parentDeploymentIdLike(String parentDeploymentIdLike)
Only select deployments that have a parent deployment id like the given value.
|
DeploymentQuery |
DeploymentQuery.parentDeploymentIds(List<String> parentDeploymentIds)
Only select deployments with a parent deployment id that is the same as one of the given deployment identifiers.
|
DeploymentQuery |
DeploymentQuery.processDefinitionKey(String key)
Only select deployments with the given process definition key.
|
DeploymentQuery |
DeploymentQuery.processDefinitionKeyLike(String keyLike)
Only select deployments with a process definition key like the given string.
|
Copyright © 2020 Flowable. All rights reserved.