| Package | Description |
|---|---|
| org.flowable.cmmn.api | |
| org.flowable.cmmn.engine.impl.cmd | |
| org.flowable.cmmn.engine.impl.runtime | |
| org.flowable.cmmn.engine.impl.util | |
| org.flowable.engine |
Public API of the Flowable 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 Deployments.RuntimeService: For starting and searching ProcessInstances.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.impl.cmd | |
| org.flowable.engine.impl.util | |
| org.flowable.entitylink.api | |
| org.flowable.entitylink.service.impl | |
| org.flowable.entitylink.service.impl.persistence.entity | |
| org.flowable.entitylink.service.impl.persistence.entity.data | |
| org.flowable.entitylink.service.impl.persistence.entity.data.impl |
| Modifier and Type | Method and Description |
|---|---|
List<EntityLink> |
CmmnRuntimeService.getEntityLinkChildrenForCaseInstance(String instanceId)
Retrieves the
EntityLinks associated with the given case instance. |
List<EntityLink> |
CmmnRuntimeService.getEntityLinkChildrenWithSameRootAsCaseInstance(String instanceId)
Retrieves all the
EntityLinks associated with the same root as the given case instance. |
List<EntityLink> |
CmmnRuntimeService.getEntityLinkParentsForCaseInstance(String instanceId)
Retrieves the
EntityLinks where the given case instance is referenced. |
| Modifier and Type | Method and Description |
|---|---|
List<EntityLink> |
GetEntityLinkChildrenWithSameRootAsCaseInstanceCmd.execute(CommandContext commandContext) |
List<EntityLink> |
GetEntityLinkParentsForCaseInstanceCmd.execute(CommandContext commandContext) |
List<EntityLink> |
GetEntityLinkChildrenForCaseInstanceCmd.execute(CommandContext commandContext) |
| Modifier and Type | Method and Description |
|---|---|
List<EntityLink> |
CmmnRuntimeServiceImpl.getEntityLinkChildrenForCaseInstance(String caseInstanceId) |
List<EntityLink> |
CmmnRuntimeServiceImpl.getEntityLinkChildrenWithSameRootAsCaseInstance(String instanceId) |
List<EntityLink> |
CmmnRuntimeServiceImpl.getEntityLinkParentsForCaseInstance(String caseInstanceId) |
| Modifier and Type | Method and Description |
|---|---|
protected static EntityLinkEntity |
EntityLinkUtil.copyAndCreateEntityLink(String subScopeId,
String parentElementId,
String referenceScopeId,
String referenceScopeType,
String hierarchyType,
EntityLink parentEntityLink,
EntityLinkService entityLinkService,
CmmnHistoryManager historyManager) |
| Modifier and Type | Method and Description |
|---|---|
List<EntityLink> |
RuntimeService.getEntityLinkChildrenForProcessInstance(String instanceId)
Retrieves the
EntityLinks associated with the given process instance. |
List<EntityLink> |
RuntimeService.getEntityLinkChildrenForTask(String taskId)
Retrieves the
EntityLinks associated with the given task. |
List<EntityLink> |
RuntimeService.getEntityLinkChildrenWithSameRootAsProcessInstance(String instanceId)
Retrieves all the
EntityLinks associated with the same root as the given process instance. |
List<EntityLink> |
RuntimeService.getEntityLinkParentsForProcessInstance(String instanceId)
Retrieves the
EntityLinks where the given process instance is referenced. |
List<EntityLink> |
RuntimeService.getEntityLinkParentsForTask(String taskId)
Retrieves the
EntityLinks where the given task is referenced. |
| Modifier and Type | Method and Description |
|---|---|
List<EntityLink> |
RuntimeServiceImpl.getEntityLinkChildrenForProcessInstance(String processInstanceId) |
List<EntityLink> |
RuntimeServiceImpl.getEntityLinkChildrenForTask(String taskId) |
List<EntityLink> |
RuntimeServiceImpl.getEntityLinkChildrenWithSameRootAsProcessInstance(String processInstanceId) |
List<EntityLink> |
RuntimeServiceImpl.getEntityLinkParentsForProcessInstance(String processInstanceId) |
List<EntityLink> |
RuntimeServiceImpl.getEntityLinkParentsForTask(String taskId) |
| Modifier and Type | Method and Description |
|---|---|
List<EntityLink> |
GetEntityLinkParentsForProcessInstanceCmd.execute(CommandContext commandContext) |
List<EntityLink> |
GetEntityLinkChildrenForTaskCmd.execute(CommandContext commandContext) |
List<EntityLink> |
GetEntityLinkParentsForTaskCmd.execute(CommandContext commandContext) |
List<EntityLink> |
GetEntityLinkChildrenWithSameRootAsProcessInstanceCmd.execute(CommandContext commandContext) |
List<EntityLink> |
GetEntityLinkChildrenForProcessInstanceCmd.execute(CommandContext commandContext) |
| Modifier and Type | Method and Description |
|---|---|
protected static EntityLinkEntity |
EntityLinkUtil.copyAndCreateEntityLink(String subScopeId,
String parentElementId,
String referenceScopeId,
String referenceScopeType,
String hierarchyType,
EntityLink parentEntityLink,
EntityLinkService entityLinkService,
HistoryManager historyManager) |
| Modifier and Type | Method and Description |
|---|---|
EntityLink |
EntityLinkService.createEntityLink() |
| Modifier and Type | Method and Description |
|---|---|
List<EntityLink> |
EntityLinkService.findEntityLinksByReferenceScopeIdAndType(String referenceScopeId,
String scopeType,
String linkType) |
List<EntityLink> |
EntityLinkService.findEntityLinksByRootScopeIdAndRootType(String scopeId,
String scopeType) |
List<EntityLink> |
EntityLinkService.findEntityLinksByScopeIdAndType(String scopeId,
String scopeType,
String linkType) |
List<EntityLink> |
EntityLinkService.findEntityLinksWithSameRootScopeForScopeIdAndScopeType(String scopeId,
String scopeType,
String linkType) |
| Modifier and Type | Method and Description |
|---|---|
void |
EntityLinkService.insertEntityLink(EntityLink entityLink) |
| Modifier and Type | Method and Description |
|---|---|
List<EntityLink> |
EntityLinkServiceImpl.findEntityLinksByReferenceScopeIdAndType(String referenceScopeId,
String referenceScopeType,
String linkType) |
List<EntityLink> |
EntityLinkServiceImpl.findEntityLinksByRootScopeIdAndRootType(String scopeId,
String scopeType) |
List<EntityLink> |
EntityLinkServiceImpl.findEntityLinksByScopeIdAndType(String scopeId,
String scopeType,
String linkType) |
List<EntityLink> |
EntityLinkServiceImpl.findEntityLinksWithSameRootScopeForScopeIdAndScopeType(String scopeId,
String scopeType,
String linkType) |
| Modifier and Type | Method and Description |
|---|---|
void |
EntityLinkServiceImpl.insertEntityLink(EntityLink entityLink) |
| Modifier and Type | Interface and Description |
|---|---|
interface |
EntityLinkEntity |
| Modifier and Type | Class and Description |
|---|---|
class |
EntityLinkEntityImpl |
| Modifier and Type | Method and Description |
|---|---|
List<EntityLink> |
EntityLinkDataManager.findEntityLinksByReferenceScopeIdAndType(String referenceScopeId,
String scopeType,
String linkType) |
List<EntityLink> |
EntityLinkDataManager.findEntityLinksByRootScopeIdAndRootType(String scopeId,
String scopeType) |
List<EntityLink> |
EntityLinkDataManager.findEntityLinksByScopeIdAndType(String scopeId,
String scopeType,
String linkType) |
List<EntityLink> |
EntityLinkDataManager.findEntityLinksWithSameRootScopeForScopeIdAndScopeType(String scopeId,
String scopeType,
String linkType) |
| Modifier and Type | Method and Description |
|---|---|
List<EntityLink> |
MybatisEntityLinkDataManager.findEntityLinksByReferenceScopeIdAndType(String referenceScopeId,
String referenceScopeType,
String linkType) |
List<EntityLink> |
MybatisEntityLinkDataManager.findEntityLinksByRootScopeIdAndRootType(String scopeId,
String scopeType) |
List<EntityLink> |
MybatisEntityLinkDataManager.findEntityLinksByScopeIdAndType(String scopeId,
String scopeType,
String linkType) |
List<EntityLink> |
MybatisEntityLinkDataManager.findEntityLinksWithSameRootScopeForScopeIdAndScopeType(String scopeId,
String scopeType,
String linkType) |
Copyright © 2023 Flowable. All rights reserved.