Uses of Interface
org.flowable.engine.repository.DeploymentQuery
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.
Classes related to the
RepositoryService
.-
Uses of DeploymentQuery in org.flowable.engine
-
Uses of DeploymentQuery in org.flowable.engine.impl
Modifier and TypeMethodDescriptionRepositoryServiceImpl.createDeploymentQuery()
DeploymentQueryImpl.deploymentDerivedFrom
(String deploymentId) DeploymentQueryImpl.orderByDeploymentId()
DeploymentQueryImpl.orderByDeploymentName()
DeploymentQueryImpl.orderByDeploymentTime()
DeploymentQueryImpl.orderByTenantId()
DeploymentQueryImpl.parentDeploymentId
(String parentDeploymentId) DeploymentQueryImpl.parentDeploymentIdLike
(String parentDeploymentIdLike) DeploymentQueryImpl.parentDeploymentIds
(List<String> parentDeploymentIds) -
Uses of DeploymentQuery in org.flowable.engine.repository
Modifier and TypeMethodDescriptionDeploymentQuery.deploymentCategory
(String category) Only select deployments with the given category.DeploymentQuery.deploymentCategoryLike
(String categoryLike) Only select deployments with a category like the given string.DeploymentQuery.deploymentCategoryNotEquals
(String categoryNotEquals) Only select deployments that have a different category then the given one.DeploymentQuery.deploymentDerivedFrom
(String deploymentId) Only select deployments that are derived from the given deployment.DeploymentQuery.deploymentEngineVersion
(String engineVersion) Only select deployment that have the given engine version.DeploymentQuery.deploymentId
(String deploymentId) Only select deployments with the given deployment id.DeploymentQuery.deploymentIds
(List<String> deploymentId) Only select deployments with an id in the given set of ids.DeploymentQuery.deploymentKey
(String key) Only select deployments with the given key.DeploymentQuery.deploymentKeyLike
(String keyLike) Only select deployments with a key like the given string.DeploymentQuery.deploymentName
(String name) Only select deployments with the given name.DeploymentQuery.deploymentNameLike
(String nameLike) Only select deployments with a name like the given string.DeploymentQuery.deploymentTenantId
(String tenantId) Only select deployment that have the given tenant id.DeploymentQuery.deploymentTenantIdLike
(String tenantIdLike) Only select deployments with a tenant id like the given one.DeploymentQuery.deploymentWithoutTenantId()
Only select deployments that do not have a tenant id.DeploymentQuery.latest()
Only select deployments where the deployment time is the latest value.DeploymentQuery.orderByDeploymentId()
Order by deployment id (needs to be followed byQuery.asc()
orQuery.desc()
).DeploymentQuery.orderByDeploymentName()
Order by deployment name (needs to be followed byQuery.asc()
orQuery.desc()
).DeploymentQuery.orderByDeploymentTime()
Order by deployment time (needs to be followed byQuery.asc()
orQuery.desc()
).DeploymentQuery.orderByTenantId()
Order by tenant id (needs to be followed byQuery.asc()
orQuery.desc()
).DeploymentQuery.parentDeploymentId
(String parentDeploymentId) Only select deployments that have the given parent deployment id.DeploymentQuery.parentDeploymentIdLike
(String parentDeploymentIdLike) Only select deployments that have a parent deployment id like the given value.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.processDefinitionKey
(String key) Only select deployments with the given process definition key.DeploymentQuery.processDefinitionKeyLike
(String keyLike) Only select deployments with a process definition key like the given string.