|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use DeploymentQuery | |
|---|---|
| org.camunda.bpm.engine | Public API of the camunda BPM 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 DeploymentsRuntimeService:
For starting and searching ProcessInstancesTaskService:
Exposes operations to manage human (standalone) Tasks,
such as claiming, completing and assigning tasksIdentityService:
Used for managing Users,
Groups 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. |
| 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 the RepositoryService. |
| Uses of DeploymentQuery in org.camunda.bpm.engine |
|---|
| Methods in org.camunda.bpm.engine that return DeploymentQuery | |
|---|---|
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 | |
|---|---|
class |
DeploymentQueryImpl
|
| Methods in org.camunda.bpm.engine.impl that return DeploymentQuery | |
|---|---|
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 | |
|---|---|
DeploymentQuery |
DeploymentQuery.deploymentAfter(Date after)
Only select deployments deployed after the given date |
DeploymentQuery |
DeploymentQuery.deploymentBefore(Date before)
Only select deployments deployed before the given date |
DeploymentQuery |
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 given source is null,
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 by Query.asc() or Query.desc()). |
DeploymentQuery |
DeploymentQuery.orderByDeploymenTime()
Deprecated. Use orderByDeploymentTime() instead |
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.tenantIdIn(String... tenantIds)
Only select deployments with one of the given tenant ids. |
DeploymentQuery |
DeploymentQuery.withoutTenantId()
Only select deployments which have no tenant id. |
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||