Uses of Interface
org.flowable.engine.repository.DeploymentQuery
-
Packages that use DeploymentQuery Package Description org.flowable.engine Public API of the Flowable engine.
Typical usage of the API starts by the creation of aProcessEngineConfiguration(typically based on a configuration file), from which aProcessEnginecan be obtained.
Through the services obtained from such aProcessEngine, BPM and workflow operation can be executed:
RepositoryService: ManagesDeployments.
RuntimeService: For starting and searchingProcessInstances.
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 theRepositoryService. -
-
Uses of DeploymentQuery in org.flowable.engine
Methods in org.flowable.engine that return DeploymentQuery Modifier and Type Method Description DeploymentQueryRepositoryService. createDeploymentQuery()Query deployment. -
Uses of DeploymentQuery in org.flowable.engine.impl
Classes in org.flowable.engine.impl that implement DeploymentQuery Modifier and Type Class Description classDeploymentQueryImplMethods in org.flowable.engine.impl that return DeploymentQuery Modifier and Type Method Description DeploymentQueryRepositoryServiceImpl. createDeploymentQuery()DeploymentQueryDeploymentQueryImpl. deploymentDerivedFrom(String deploymentId)DeploymentQueryDeploymentQueryImpl. orderByDeploymentId()DeploymentQueryDeploymentQueryImpl. orderByDeploymentName()DeploymentQueryDeploymentQueryImpl. orderByDeploymentTime()DeploymentQueryDeploymentQueryImpl. orderByTenantId()DeploymentQueryDeploymentQueryImpl. parentDeploymentId(String parentDeploymentId)DeploymentQueryDeploymentQueryImpl. parentDeploymentIdLike(String parentDeploymentIdLike)DeploymentQueryDeploymentQueryImpl. parentDeploymentIds(List<String> parentDeploymentIds) -
Uses of DeploymentQuery in org.flowable.engine.repository
Methods in org.flowable.engine.repository that return DeploymentQuery Modifier and Type Method Description DeploymentQueryDeploymentQuery. deploymentCategory(String category)Only select deployments with the given category.DeploymentQueryDeploymentQuery. deploymentCategoryLike(String categoryLike)Only select deployments with a category like the given string.DeploymentQueryDeploymentQuery. deploymentCategoryNotEquals(String categoryNotEquals)Only select deployments that have a different category then the given one.DeploymentQueryDeploymentQuery. deploymentDerivedFrom(String deploymentId)Only select deployments that are derived from the given deployment.DeploymentQueryDeploymentQuery. deploymentEngineVersion(String engineVersion)Only select deployment that have the given engine version.DeploymentQueryDeploymentQuery. deploymentId(String deploymentId)Only select deployments with the given deployment id.DeploymentQueryDeploymentQuery. deploymentIds(List<String> deploymentId)Only select deployments with an id in the given set of ids.DeploymentQueryDeploymentQuery. deploymentKey(String key)Only select deployments with the given key.DeploymentQueryDeploymentQuery. deploymentKeyLike(String keyLike)Only select deployments with a key like the given string.DeploymentQueryDeploymentQuery. deploymentName(String name)Only select deployments with the given name.DeploymentQueryDeploymentQuery. deploymentNameLike(String nameLike)Only select deployments with a name like the given string.DeploymentQueryDeploymentQuery. deploymentTenantId(String tenantId)Only select deployment that have the given tenant id.DeploymentQueryDeploymentQuery. deploymentTenantIdLike(String tenantIdLike)Only select deployments with a tenant id like the given one.DeploymentQueryDeploymentQuery. deploymentWithoutTenantId()Only select deployments that do not have a tenant id.DeploymentQueryDeploymentQuery. latest()Only select deployments where the deployment time is the latest value.DeploymentQueryDeploymentQuery. orderByDeploymentId()Order by deployment id (needs to be followed byQuery.asc()orQuery.desc()).DeploymentQueryDeploymentQuery. orderByDeploymentName()Order by deployment name (needs to be followed byQuery.asc()orQuery.desc()).DeploymentQueryDeploymentQuery. orderByDeploymentTime()Order by deployment time (needs to be followed byQuery.asc()orQuery.desc()).DeploymentQueryDeploymentQuery. orderByTenantId()Order by tenant id (needs to be followed byQuery.asc()orQuery.desc()).DeploymentQueryDeploymentQuery. parentDeploymentId(String parentDeploymentId)Only select deployments that have the given parent deployment id.DeploymentQueryDeploymentQuery. parentDeploymentIdLike(String parentDeploymentIdLike)Only select deployments that have a parent deployment id like the given value.DeploymentQueryDeploymentQuery. parentDeploymentIds(List<String> parentDeploymentIds)Only select deployments with a parent deployment id that is the same as one of the given deployment identifiers.DeploymentQueryDeploymentQuery. processDefinitionKey(String key)Only select deployments with the given process definition key.DeploymentQueryDeploymentQuery. processDefinitionKeyLike(String keyLike)Only select deployments with a process definition key like the given string.
-