Uses of Interface
org.flowable.entitylink.api.EntityLink
Packages that use EntityLink
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 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.API implementation classes, which shouldn't directly be used by end-users.
-
Uses of EntityLink in org.flowable.cmmn.api
Methods in org.flowable.cmmn.api that return types with arguments of type EntityLinkModifier and TypeMethodDescriptionCmmnRuntimeService.getEntityLinkChildrenForCaseInstance(String instanceId) Retrieves theEntityLinks associated with the given case instance.CmmnRuntimeService.getEntityLinkChildrenWithSameRootAsCaseInstance(String instanceId) Retrieves all theEntityLinks associated with the same root as the given case instance.CmmnRuntimeService.getEntityLinkParentsForCaseInstance(String instanceId) Retrieves theEntityLinks where the given case instance is referenced. -
Uses of EntityLink in org.flowable.cmmn.engine.impl.cmd
Methods in org.flowable.cmmn.engine.impl.cmd that return types with arguments of type EntityLinkModifier and TypeMethodDescriptionGetEntityLinkChildrenForCaseInstanceCmd.execute(CommandContext commandContext) GetEntityLinkChildrenWithSameRootAsCaseInstanceCmd.execute(CommandContext commandContext) GetEntityLinkParentsForCaseInstanceCmd.execute(CommandContext commandContext) -
Uses of EntityLink in org.flowable.cmmn.engine.impl.runtime
Methods in org.flowable.cmmn.engine.impl.runtime that return types with arguments of type EntityLinkModifier and TypeMethodDescriptionCmmnRuntimeServiceImpl.getEntityLinkChildrenForCaseInstance(String caseInstanceId) CmmnRuntimeServiceImpl.getEntityLinkChildrenWithSameRootAsCaseInstance(String instanceId) CmmnRuntimeServiceImpl.getEntityLinkParentsForCaseInstance(String caseInstanceId) -
Uses of EntityLink in org.flowable.cmmn.engine.impl.util
Methods in org.flowable.cmmn.engine.impl.util with parameters of type EntityLinkModifier and TypeMethodDescriptionprotected static EntityLinkEntityEntityLinkUtil.copyAndCreateEntityLink(String subScopeId, String parentElementId, String referenceScopeId, String referenceScopeType, String hierarchyType, EntityLink parentEntityLink, EntityLinkService entityLinkService, CmmnHistoryManager historyManager) -
Uses of EntityLink in org.flowable.engine
Methods in org.flowable.engine that return types with arguments of type EntityLinkModifier and TypeMethodDescriptionRuntimeService.getEntityLinkChildrenForProcessInstance(String instanceId) Retrieves theEntityLinks associated with the given process instance.RuntimeService.getEntityLinkChildrenForTask(String taskId) Retrieves theEntityLinks associated with the given task.RuntimeService.getEntityLinkChildrenWithSameRootAsProcessInstance(String instanceId) Retrieves all theEntityLinks associated with the same root as the given process instance.RuntimeService.getEntityLinkParentsForProcessInstance(String instanceId) Retrieves theEntityLinks where the given process instance is referenced.RuntimeService.getEntityLinkParentsForTask(String taskId) Retrieves theEntityLinks where the given task is referenced. -
Uses of EntityLink in org.flowable.engine.impl
Methods in org.flowable.engine.impl that return types with arguments of type EntityLinkModifier and TypeMethodDescriptionRuntimeServiceImpl.getEntityLinkChildrenForProcessInstance(String processInstanceId) RuntimeServiceImpl.getEntityLinkChildrenForTask(String taskId) RuntimeServiceImpl.getEntityLinkChildrenWithSameRootAsProcessInstance(String processInstanceId) RuntimeServiceImpl.getEntityLinkParentsForProcessInstance(String processInstanceId) RuntimeServiceImpl.getEntityLinkParentsForTask(String taskId) -
Uses of EntityLink in org.flowable.engine.impl.cmd
Methods in org.flowable.engine.impl.cmd that return types with arguments of type EntityLinkModifier and TypeMethodDescriptionGetEntityLinkChildrenForProcessInstanceCmd.execute(CommandContext commandContext) GetEntityLinkChildrenForTaskCmd.execute(CommandContext commandContext) GetEntityLinkChildrenWithSameRootAsProcessInstanceCmd.execute(CommandContext commandContext) GetEntityLinkParentsForProcessInstanceCmd.execute(CommandContext commandContext) GetEntityLinkParentsForTaskCmd.execute(CommandContext commandContext) -
Uses of EntityLink in org.flowable.engine.impl.util
Methods in org.flowable.engine.impl.util with parameters of type EntityLinkModifier and TypeMethodDescriptionprotected static EntityLinkEntityEntityLinkUtil.copyAndCreateEntityLink(String subScopeId, String parentElementId, String referenceScopeId, String referenceScopeType, String hierarchyType, EntityLink parentEntityLink, EntityLinkService entityLinkService, HistoryManager historyManager) -
Uses of EntityLink in org.flowable.entitylink.api
Methods in org.flowable.entitylink.api that return EntityLinkMethods in org.flowable.entitylink.api that return types with arguments of type EntityLinkModifier and TypeMethodDescriptionEntityLinkService.createInternalEntityLinkQuery()default List<EntityLink>EntityLinkService.findEntityLinksByReferenceScopeIdAndType(String referenceScopeId, String scopeType, String linkType) default List<EntityLink>EntityLinkService.findEntityLinksByRootScopeIdAndRootType(String scopeId, String scopeType) default List<EntityLink>EntityLinkService.findEntityLinksByScopeIdAndType(String scopeId, String scopeType, String linkType) EntityLinkService.findEntityLinksWithSameRootScopeForScopeIdAndScopeType(String scopeId, String scopeType, String linkType) Methods in org.flowable.entitylink.api with parameters of type EntityLink -
Uses of EntityLink in org.flowable.entitylink.service.impl
Methods in org.flowable.entitylink.service.impl that return types with arguments of type EntityLinkModifier and TypeMethodDescriptionEntityLinkServiceImpl.createInternalEntityLinkQuery()EntityLinkServiceImpl.findEntityLinksWithSameRootScopeForScopeIdAndScopeType(String scopeId, String scopeType, String linkType) Methods in org.flowable.entitylink.service.impl with parameters of type EntityLinkModifier and TypeMethodDescriptionvoidEntityLinkServiceImpl.insertEntityLink(EntityLink entityLink) -
Uses of EntityLink in org.flowable.entitylink.service.impl.persistence.entity
Subinterfaces of EntityLink in org.flowable.entitylink.service.impl.persistence.entityClasses in org.flowable.entitylink.service.impl.persistence.entity that implement EntityLinkMethods in org.flowable.entitylink.service.impl.persistence.entity that return types with arguments of type EntityLinkModifier and TypeMethodDescriptionEntityLinkEntityManager.findEntityLinksWithSameRootScopeForScopeIdAndScopeType(String scopeId, String scopeType, String linkType) EntityLinkEntityManagerImpl.findEntityLinksWithSameRootScopeForScopeIdAndScopeType(String scopeId, String scopeType, String linkType) -
Uses of EntityLink in org.flowable.entitylink.service.impl.persistence.entity.data
Methods in org.flowable.entitylink.service.impl.persistence.entity.data that return types with arguments of type EntityLinkModifier and TypeMethodDescriptionEntityLinkDataManager.findEntityLinksWithSameRootScopeForScopeIdAndScopeType(String scopeId, String scopeType, String linkType) -
Uses of EntityLink in org.flowable.entitylink.service.impl.persistence.entity.data.impl
Methods in org.flowable.entitylink.service.impl.persistence.entity.data.impl that return types with arguments of type EntityLinkModifier and TypeMethodDescriptionMybatisEntityLinkDataManager.findEntityLinksWithSameRootScopeForScopeIdAndScopeType(String scopeId, String scopeType, String linkType)