Package | Description |
---|---|
org.flowable.engine |
Public API of the Activiti engine.
Typical usage of the API starts by the creation of a org.activiti.engine.ProcessEngineConfiguration
(typically based on a configuration file), from which a org.activiti.engine.ProcessEngine can be obtained.Through the services obtained from such a org.activiti.engine.ProcessEngine , BPM and workflow operation
can be executed:org.activiti.engine.RepositoryService : Manages org.activiti.engine.repository.Deployment s org.activiti.engine.RuntimeService : For starting and searching org.activiti.engine.runtime.ProcessInstance s org.activiti.engine.TaskService : Exposes operations to manage human (standalone) org.activiti.engine.task.Task s,
such as claiming, completing and assigning tasksorg.activiti.engine.IdentityService : Used for managing org.activiti.engine.identity.User s,
org.activiti.engine.identity.Group s and the relations between themorg.activiti.engine.ManagementService : Exposes engine admin and maintenance operations,
which have no relation to the runtime exection of business processesorg.activiti.engine.HistoryService : Exposes information about ongoing and past process instances.org.activiti.engine.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 the
org.activiti.engine.RepositoryService . |
Modifier and Type | Method and Description |
---|---|
ModelQuery |
RepositoryService.createModelQuery()
Query models.
|
Modifier and Type | Class and Description |
---|---|
class |
ModelQueryImpl |
Modifier and Type | Method and Description |
---|---|
ModelQuery |
RepositoryServiceImpl.createModelQuery() |
ModelQuery |
ModelQueryImpl.deployed() |
ModelQuery |
ModelQueryImpl.deploymentId(String deploymentId) |
ModelQuery |
ModelQueryImpl.latestVersion() |
ModelQuery |
ModelQueryImpl.modelKey(String key) |
ModelQuery |
ModelQueryImpl.modelTenantId(String tenantId) |
ModelQuery |
ModelQueryImpl.modelTenantIdLike(String tenantIdLike) |
ModelQuery |
ModelQueryImpl.modelWithoutTenantId() |
ModelQuery |
ModelQueryImpl.notDeployed() |
ModelQuery |
ModelQueryImpl.orderByCreateTime() |
ModelQuery |
ModelQueryImpl.orderByLastUpdateTime() |
ModelQuery |
ModelQueryImpl.orderByModelCategory() |
ModelQuery |
ModelQueryImpl.orderByModelId() |
ModelQuery |
ModelQueryImpl.orderByModelKey() |
ModelQuery |
ModelQueryImpl.orderByModelName() |
ModelQuery |
ModelQueryImpl.orderByModelVersion() |
ModelQuery |
ModelQueryImpl.orderByTenantId() |
Modifier and Type | Method and Description |
---|---|
ModelQuery |
ModelQuery.deployed()
Only select models that are deployed (ie deploymentId != null)
|
ModelQuery |
ModelQuery.deploymentId(String deploymentId)
Only select models that are the source for the provided deployment
|
ModelQuery |
ModelQuery.latestVersion()
Only select models which has the highest version.
|
ModelQuery |
ModelQuery.modelCategory(String modelCategory)
Only select models with the given category.
|
ModelQuery |
ModelQuery.modelCategoryLike(String modelCategoryLike)
Only select models where the category matches the given parameter.
|
ModelQuery |
ModelQuery.modelCategoryNotEquals(String categoryNotEquals)
Only select models that have a different category then the given one.
|
ModelQuery |
ModelQuery.modelId(String modelId)
Only select model with the given id.
|
ModelQuery |
ModelQuery.modelKey(String key)
Only selects models with the given key.
|
ModelQuery |
ModelQuery.modelName(String modelName)
Only select models with the given name.
|
ModelQuery |
ModelQuery.modelNameLike(String modelNameLike)
Only select models where the name matches the given parameter.
|
ModelQuery |
ModelQuery.modelTenantId(String tenantId)
Only select models that have the given tenant id.
|
ModelQuery |
ModelQuery.modelTenantIdLike(String tenantIdLike)
Only select models with a tenant id like the given one.
|
ModelQuery |
ModelQuery.modelVersion(Integer modelVersion)
Only select model with a certain version.
|
ModelQuery |
ModelQuery.modelWithoutTenantId()
Only select models that do not have a tenant id.
|
ModelQuery |
ModelQuery.notDeployed()
Only select models that are not yet deployed
|
ModelQuery |
ModelQuery.orderByCreateTime()
Order by the creation time of the models (needs to be followed by
Query.asc() or Query.desc() ). |
ModelQuery |
ModelQuery.orderByLastUpdateTime()
Order by the last update time of the models (needs to be followed by
Query.asc() or Query.desc() ). |
ModelQuery |
ModelQuery.orderByModelCategory()
Order by the category of the models (needs to be followed by
Query.asc() or Query.desc() ). |
ModelQuery |
ModelQuery.orderByModelId()
Order by the id of the models (needs to be followed by
Query.asc() or Query.desc() ). |
ModelQuery |
ModelQuery.orderByModelKey()
Order by the key of the models (needs to be followed by
Query.asc() or Query.desc() ). |
ModelQuery |
ModelQuery.orderByModelName()
Order by the name of the models (needs to be followed by
Query.asc() or Query.desc() ). |
ModelQuery |
ModelQuery.orderByModelVersion()
Order by the version of the models (needs to be followed by
Query.asc() or Query.desc() ). |
ModelQuery |
ModelQuery.orderByTenantId()
Order by tenant id (needs to be followed by
Query.asc() or Query.desc() ). |
Copyright © 2016 Flowable. All rights reserved.