Uses of Interface
org.flowable.engine.repository.ModelQuery
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 ModelQuery in org.flowable.engine
-
Uses of ModelQuery in org.flowable.engine.impl
Modifier and TypeMethodDescriptionRepositoryServiceImpl.createModelQuery()
ModelQueryImpl.deployed()
ModelQueryImpl.deploymentId
(String deploymentId) ModelQueryImpl.latestVersion()
ModelQueryImpl.modelTenantId
(String tenantId) ModelQueryImpl.modelTenantIdLike
(String tenantIdLike) ModelQueryImpl.modelWithoutTenantId()
ModelQueryImpl.notDeployed()
ModelQueryImpl.orderByCreateTime()
ModelQueryImpl.orderByLastUpdateTime()
ModelQueryImpl.orderByModelCategory()
ModelQueryImpl.orderByModelId()
ModelQueryImpl.orderByModelKey()
ModelQueryImpl.orderByModelName()
ModelQueryImpl.orderByModelVersion()
ModelQueryImpl.orderByTenantId()
-
Uses of ModelQuery in org.flowable.engine.repository
Modifier and TypeMethodDescriptionModelQuery.deployed()
Only select models that are deployed (ie deploymentId !ModelQuery.deploymentId
(String deploymentId) Only select models that are the source for the provided deploymentModelQuery.latestVersion()
Only select models which has the highest version.ModelQuery.modelCategory
(String modelCategory) Only select models with the given category.ModelQuery.modelCategoryLike
(String modelCategoryLike) Only select models where the category matches the given parameter.ModelQuery.modelCategoryNotEquals
(String categoryNotEquals) Only select models that have a different category then the given one.Only select model with the given id.Only selects models with the given key.Only select models with the given name.ModelQuery.modelNameLike
(String modelNameLike) Only select models where the name matches the given parameter.ModelQuery.modelTenantId
(String tenantId) Only select models that have the given tenant id.ModelQuery.modelTenantIdLike
(String tenantIdLike) Only select models with a tenant id like the given one.ModelQuery.modelVersion
(Integer modelVersion) Only select model with a certain version.ModelQuery.modelWithoutTenantId()
Only select models that do not have a tenant id.ModelQuery.notDeployed()
Only select models that are not yet deployedModelQuery.orderByCreateTime()
Order by the creation time of the models (needs to be followed byQuery.asc()
orQuery.desc()
).ModelQuery.orderByLastUpdateTime()
Order by the last update time of the models (needs to be followed byQuery.asc()
orQuery.desc()
).ModelQuery.orderByModelCategory()
Order by the category of the models (needs to be followed byQuery.asc()
orQuery.desc()
).ModelQuery.orderByModelId()
Order by the id of the models (needs to be followed byQuery.asc()
orQuery.desc()
).ModelQuery.orderByModelKey()
Order by the key of the models (needs to be followed byQuery.asc()
orQuery.desc()
).ModelQuery.orderByModelName()
Order by the name of the models (needs to be followed byQuery.asc()
orQuery.desc()
).ModelQuery.orderByModelVersion()
Order by the version of the models (needs to be followed byQuery.asc()
orQuery.desc()
).ModelQuery.orderByTenantId()
Order by tenant id (needs to be followed byQuery.asc()
orQuery.desc()
).