Uses of Interface
org.camunda.bpm.engine.repository.DeploymentQuery
Package
Description
Public API of the Camunda Platform 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
sRuntimeService
:
For starting and searching ProcessInstance
sTaskService
:
Exposes operations to manage human (standalone) Task
s,
such as claiming, completing and assigning tasksIdentityService
:
Used for managing User
s,
Group
s and the relations between themManagementService
:
Exposes engine admin and maintenance operations,
which have no relation to the runtime execution of business processesHistoryService
:
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.camunda.bpm.engine
Modifier and TypeMethodDescriptionRepositoryService.createDeploymentQuery()
Query process definitions. -
Uses of DeploymentQuery in org.camunda.bpm.engine.impl
Modifier and TypeMethodDescriptionRepositoryServiceImpl.createDeploymentQuery()
DeploymentQueryImpl.deploymentAfter
(Date after) DeploymentQueryImpl.deploymentBefore
(Date before) DeploymentQueryImpl.deploymentSource
(String source) DeploymentQueryImpl.includeDeploymentsWithoutTenantId()
DeploymentQueryImpl.orderByDeploymentId()
DeploymentQueryImpl.orderByDeploymenTime()
DeploymentQueryImpl.orderByDeploymentName()
DeploymentQueryImpl.orderByDeploymentTime()
DeploymentQueryImpl.orderByTenantId()
DeploymentQueryImpl.tenantIdIn
(String... tenantIds) DeploymentQueryImpl.withoutTenantId()
-
Uses of DeploymentQuery in org.camunda.bpm.engine.repository
Modifier and TypeMethodDescriptionDeploymentQuery.deploymentAfter
(Date after) Only select deployments deployed after the given dateDeploymentQuery.deploymentBefore
(Date before) Only select deployments deployed before the given dateDeploymentQuery.deploymentId
(String deploymentId) Only select deployments with the given deployment id.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.deploymentSource
(String source) If the givensource
isnull
, then deployments are returned where source is equal to null.DeploymentQuery.includeDeploymentsWithoutTenantId()
Select deployments which have no tenant id.DeploymentQuery.orderByDeploymentId()
Order by deployment id (needs to be followed byQuery.asc()
orQuery.desc()
).DeploymentQuery.orderByDeploymenTime()
Deprecated.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.tenantIdIn
(String... tenantIds) Only select deployments with one of the given tenant ids.DeploymentQuery.withoutTenantId()
Only select deployments which have no tenant id. -
Uses of DeploymentQuery in org.camunda.bpm.engine.rest.dto.repository
Modifier and TypeMethodDescriptionprotected DeploymentQuery
DeploymentQueryDto.createNewQuery
(ProcessEngine engine) Modifier and TypeMethodDescriptionprotected void
DeploymentQueryDto.applyFilters
(DeploymentQuery query) protected void
DeploymentQueryDto.applySortBy
(DeploymentQuery query, String sortBy, Map<String, Object> parameters, ProcessEngine engine)
orderByDeploymentTime()
instead