Package | Description |
---|---|
org.activiti.engine |
Public API of the Activiti 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 Deployment s RuntimeService : For starting and searching ProcessInstance s TaskService : Exposes operations to manage human (standalone) Task s,
such as claiming, completing and assigning tasksIdentityService : Used for managing User s,
Group s and the relations between themManagementService : Exposes engine admin and maintenance operations,
which have no relation to the runtime exection 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.activiti.engine.repository |
Classes related to the
RepositoryService . |
Modifier and Type | Method and Description |
---|---|
ProcessDefinitionQuery |
RepositoryService.createProcessDefinitionQuery()
Query process definitions.
|
Modifier and Type | Method and Description |
---|---|
ProcessDefinitionQuery |
ProcessDefinitionQuery.active()
Only selects process definitions which are active
|
ProcessDefinitionQuery |
ProcessDefinitionQuery.deploymentId(String deploymentId)
Only select process definitions that are deployed in a deployment with the
given deployment id
|
ProcessDefinitionQuery |
ProcessDefinitionQuery.deploymentIds(Set<String> deploymentIds)
Select process definitions that are deployed in deployments with the given set of ids
|
ProcessDefinitionQuery |
ProcessDefinitionQuery.latestVersion()
Only select the process definitions which are the latest deployed
(ie.
|
ProcessDefinitionQuery |
ProcessDefinitionQuery.messageEventSubscription(String messageName)
Deprecated.
|
ProcessDefinitionQuery |
ProcessDefinitionQuery.messageEventSubscriptionName(String messageName)
Selects the single process definition which has a start message event
with the messageName.
|
ProcessDefinitionQuery |
ProcessDefinitionQuery.orderByDeploymentId()
Order by deployment id (needs to be followed by
Query.asc() or Query.desc() ). |
ProcessDefinitionQuery |
ProcessDefinitionQuery.orderByProcessDefinitionCategory()
Order by the category of the process definitions (needs to be followed by
Query.asc() or Query.desc() ). |
ProcessDefinitionQuery |
ProcessDefinitionQuery.orderByProcessDefinitionId()
Order by the id of the process definitions (needs to be followed by
Query.asc() or Query.desc() ). |
ProcessDefinitionQuery |
ProcessDefinitionQuery.orderByProcessDefinitionKey()
Order by process definition key (needs to be followed by
Query.asc() or Query.desc() ). |
ProcessDefinitionQuery |
ProcessDefinitionQuery.orderByProcessDefinitionName()
Order by the name of the process definitions (needs to be followed by
Query.asc() or Query.desc() ). |
ProcessDefinitionQuery |
ProcessDefinitionQuery.orderByProcessDefinitionVersion()
Order by the version of the process definitions (needs to be followed by
Query.asc() or Query.desc() ). |
ProcessDefinitionQuery |
ProcessDefinitionQuery.orderByTenantId()
Order by tenant id (needs to be followed by
Query.asc() or
Query.desc() ). |
ProcessDefinitionQuery |
ProcessDefinitionQuery.processDefinitionCategory(String processDefinitionCategory)
Only select process definitions with the given category.
|
ProcessDefinitionQuery |
ProcessDefinitionQuery.processDefinitionCategoryLike(String processDefinitionCategoryLike)
Only select process definitions where the category matches the given parameter.
|
ProcessDefinitionQuery |
ProcessDefinitionQuery.processDefinitionCategoryNotEquals(String categoryNotEquals)
Only select deployments that have a different category then the given one.
|
ProcessDefinitionQuery |
ProcessDefinitionQuery.processDefinitionId(String processDefinitionId)
Only select process definiton with the given id.
|
ProcessDefinitionQuery |
ProcessDefinitionQuery.processDefinitionIds(Set<String> processDefinitionIds)
Only select process definitions with the given ids.
|
ProcessDefinitionQuery |
ProcessDefinitionQuery.processDefinitionKey(String processDefinitionKey)
Only select process definition with the given key.
|
ProcessDefinitionQuery |
ProcessDefinitionQuery.processDefinitionKeyLike(String processDefinitionKeyLike)
Only select process definitions where the key matches the given parameter.
|
ProcessDefinitionQuery |
ProcessDefinitionQuery.processDefinitionName(String processDefinitionName)
Only select process definitions with the given name.
|
ProcessDefinitionQuery |
ProcessDefinitionQuery.processDefinitionNameLike(String processDefinitionNameLike)
Only select process definitions where the name matches the given parameter.
|
ProcessDefinitionQuery |
ProcessDefinitionQuery.processDefinitionResourceName(String resourceName)
Only select process definition with the given resource name.
|
ProcessDefinitionQuery |
ProcessDefinitionQuery.processDefinitionResourceNameLike(String resourceNameLike)
Only select process definition with a resource name like the given .
|
ProcessDefinitionQuery |
ProcessDefinitionQuery.processDefinitionTenantId(String tenantId)
Only select process definitions that have the given tenant id.
|
ProcessDefinitionQuery |
ProcessDefinitionQuery.processDefinitionTenantIdLike(String tenantIdLike)
Only select process definitions with a tenant id like the given one.
|
ProcessDefinitionQuery |
ProcessDefinitionQuery.processDefinitionVersion(Integer processDefinitionVersion)
Only select process definition with a certain version.
|
ProcessDefinitionQuery |
ProcessDefinitionQuery.processDefinitionVersionGreaterThan(Integer processDefinitionVersion)
Only select process definitions which version are greater than a certain version.
|
ProcessDefinitionQuery |
ProcessDefinitionQuery.processDefinitionVersionGreaterThanOrEquals(Integer processDefinitionVersion)
Only select process definitions which version are greater than or equals a certain version.
|
ProcessDefinitionQuery |
ProcessDefinitionQuery.processDefinitionVersionLowerThan(Integer processDefinitionVersion)
Only select process definitions which version are lower than a certain version.
|
ProcessDefinitionQuery |
ProcessDefinitionQuery.processDefinitionVersionLowerThanOrEquals(Integer processDefinitionVersion)
Only select process definitions which version are lower than or equals a certain version.
|
ProcessDefinitionQuery |
ProcessDefinitionQuery.processDefinitionWithoutTenantId()
Only select process definitions that do not have a tenant id.
|
ProcessDefinitionQuery |
ProcessDefinitionQuery.startableByUser(String userId)
Only selects process definitions which given userId is authoriezed to start
|
ProcessDefinitionQuery |
ProcessDefinitionQuery.suspended()
Only selects process definitions which are suspended
|
Copyright © 2016 Alfresco. All rights reserved.