Uses of Interface
org.camunda.bpm.engine.repository.DeploymentQuery
-
Packages that use DeploymentQuery Package Description org.camunda.bpm.engine Public API of the Camunda Platform engine.
Typical usage of the API starts by the creation of aProcessEngineConfiguration
(typically based on a configuration file), from which aProcessEngine
can be obtained.
Through the services obtained from such aProcessEngine
, BPM and workflow operation can be executed:
RepositoryService
: ManagesDeployment
s
RuntimeService
: For starting and searchingProcessInstance
s
TaskService
: Exposes operations to manage human (standalone)Task
s, such as claiming, completing and assigning tasks
IdentityService
: Used for managingUser
s,Group
s and the relations between them
ManagementService
: Exposes engine admin and maintenance operations, which have no relation to the runtime execution 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.camunda.bpm.engine.impl API implementation classes, which shouldn't directly be used by end-users.org.camunda.bpm.engine.repository Classes related to theRepositoryService
.org.camunda.bpm.engine.rest.dto.repository -
-
Uses of DeploymentQuery in org.camunda.bpm.engine
Methods in org.camunda.bpm.engine that return DeploymentQuery Modifier and Type Method Description DeploymentQuery
RepositoryService. createDeploymentQuery()
Query process definitions. -
Uses of DeploymentQuery in org.camunda.bpm.engine.impl
Classes in org.camunda.bpm.engine.impl that implement DeploymentQuery Modifier and Type Class Description class
DeploymentQueryImpl
Methods in org.camunda.bpm.engine.impl that return DeploymentQuery Modifier and Type Method Description DeploymentQuery
RepositoryServiceImpl. createDeploymentQuery()
DeploymentQuery
DeploymentQueryImpl. deploymentAfter(Date after)
DeploymentQuery
DeploymentQueryImpl. deploymentBefore(Date before)
DeploymentQuery
DeploymentQueryImpl. deploymentSource(String source)
DeploymentQuery
DeploymentQueryImpl. includeDeploymentsWithoutTenantId()
DeploymentQuery
DeploymentQueryImpl. orderByDeploymentId()
DeploymentQuery
DeploymentQueryImpl. orderByDeploymenTime()
DeploymentQuery
DeploymentQueryImpl. orderByDeploymentName()
DeploymentQuery
DeploymentQueryImpl. orderByDeploymentTime()
DeploymentQuery
DeploymentQueryImpl. orderByTenantId()
DeploymentQuery
DeploymentQueryImpl. tenantIdIn(String... tenantIds)
DeploymentQuery
DeploymentQueryImpl. withoutTenantId()
-
Uses of DeploymentQuery in org.camunda.bpm.engine.repository
Methods in org.camunda.bpm.engine.repository that return DeploymentQuery Modifier and Type Method Description DeploymentQuery
DeploymentQuery. deploymentAfter(Date after)
Only select deployments deployed after the given dateDeploymentQuery
DeploymentQuery. deploymentBefore(Date before)
Only select deployments deployed before the given dateDeploymentQuery
DeploymentQuery. deploymentId(String deploymentId)
Only select deployments with the given deployment id.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. deploymentSource(String source)
If the givensource
isnull
, then deployments are returned where source is equal to null.DeploymentQuery
DeploymentQuery. includeDeploymentsWithoutTenantId()
Select deployments which have no tenant id.DeploymentQuery
DeploymentQuery. orderByDeploymentId()
Order by deployment id (needs to be followed byQuery.asc()
orQuery.desc()
).DeploymentQuery
DeploymentQuery. orderByDeploymenTime()
Deprecated.UseorderByDeploymentTime()
insteadDeploymentQuery
DeploymentQuery. orderByDeploymentName()
Order by deployment name (needs to be followed byQuery.asc()
orQuery.desc()
).DeploymentQuery
DeploymentQuery. orderByDeploymentTime()
Order by deployment time (needs to be followed byQuery.asc()
orQuery.desc()
).DeploymentQuery
DeploymentQuery. orderByTenantId()
Order by tenant id (needs to be followed byQuery.asc()
orQuery.desc()
).DeploymentQuery
DeploymentQuery. tenantIdIn(String... tenantIds)
Only select deployments with one of the given tenant ids.DeploymentQuery
DeploymentQuery. withoutTenantId()
Only select deployments which have no tenant id. -
Uses of DeploymentQuery in org.camunda.bpm.engine.rest.dto.repository
Methods in org.camunda.bpm.engine.rest.dto.repository that return DeploymentQuery Modifier and Type Method Description protected DeploymentQuery
DeploymentQueryDto. createNewQuery(ProcessEngine engine)
Methods in org.camunda.bpm.engine.rest.dto.repository with parameters of type DeploymentQuery Modifier and Type Method Description protected void
DeploymentQueryDto. applyFilters(DeploymentQuery query)
protected void
DeploymentQueryDto. applySortBy(DeploymentQuery query, String sortBy, Map<String,Object> parameters, ProcessEngine engine)
-