Uses of Interface
org.camunda.bpm.engine.runtime.ActivityInstance
-
Packages that use ActivityInstance Package Description org.camunda.bpm.engine Public API of the Camunda Platform engine.
Typical usage of the API starts by the creation of aProcessEngineConfiguration
(typically based on a configuration file), from which aProcessEngine
can be obtained.
Through the services obtained from such aProcessEngine
, BPM and workflow operation can be executed:
RepositoryService
: ManagesDeployment
s
RuntimeService
: For starting and searchingProcessInstance
s
TaskService
: Exposes operations to manage human (standalone)Task
s, such as claiming, completing and assigning tasks
IdentityService
: Used for managingUser
s,Group
s and the relations between them
ManagementService
: Exposes engine admin and maintenance operations, which have no relation to the runtime execution 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.camunda.bpm.engine.impl API implementation classes, which shouldn't directly be used by end-users.org.camunda.bpm.engine.impl.cmd org.camunda.bpm.engine.impl.migration.instance org.camunda.bpm.engine.impl.migration.instance.parser org.camunda.bpm.engine.impl.persistence.entity org.camunda.bpm.engine.impl.test org.camunda.bpm.engine.rest.dto.runtime org.camunda.bpm.engine.runtime Classes related to theRuntimeService
. -
-
Uses of ActivityInstance in org.camunda.bpm.engine
Methods in org.camunda.bpm.engine that return ActivityInstance Modifier and Type Method Description ActivityInstance
RuntimeService. getActivityInstance(String processInstanceId)
Allows retrieving the activity instance tree for a given process instance. -
Uses of ActivityInstance in org.camunda.bpm.engine.impl
Methods in org.camunda.bpm.engine.impl that return ActivityInstance Modifier and Type Method Description ActivityInstance
RuntimeServiceImpl. getActivityInstance(String processInstanceId)
Methods in org.camunda.bpm.engine.impl with parameters of type ActivityInstance Modifier and Type Method Description ExecutionEntity
ActivityExecutionTreeMapping. getExecution(ActivityInstance activityInstance)
-
Uses of ActivityInstance in org.camunda.bpm.engine.impl.cmd
Fields in org.camunda.bpm.engine.impl.cmd declared as ActivityInstance Modifier and Type Field Description protected ActivityInstance
ActivityCancellationCmd. activityInstanceTree
Methods in org.camunda.bpm.engine.impl.cmd that return ActivityInstance Modifier and Type Method Description ActivityInstance
GetActivityInstanceCmd. execute(CommandContext commandContext)
protected ActivityInstance
AbstractProcessInstanceModificationCommand. findActivityInstance(ActivityInstance tree, String activityInstanceId)
ActivityInstance
ActivityCancellationCmd. getActivityInstanceTree(CommandContext commandContext)
Methods in org.camunda.bpm.engine.impl.cmd that return types with arguments of type ActivityInstance Modifier and Type Method Description protected List<ActivityInstance>
ActivityCancellationCmd. getActivityInstancesForActivity(ActivityInstance tree, Set<String> parentScopeIds)
Methods in org.camunda.bpm.engine.impl.cmd with parameters of type ActivityInstance Modifier and Type Method Description List<AbstractInstanceCancellationCmd>
ActivityCancellationCmd. createActivityInstanceCancellations(ActivityInstance activityInstanceTree, CommandContext commandContext)
protected ActivityInstance
AbstractProcessInstanceModificationCommand. findActivityInstance(ActivityInstance tree, String activityInstanceId)
protected TransitionInstance
AbstractProcessInstanceModificationCommand. findTransitionInstance(ActivityInstance tree, String transitionInstanceId)
protected List<ActivityInstance>
ActivityCancellationCmd. getActivityInstancesForActivity(ActivityInstance tree, Set<String> parentScopeIds)
protected ExecutionEntity
AbstractProcessInstanceModificationCommand. getScopeExecutionForActivityInstance(ExecutionEntity processInstance, ActivityExecutionTreeMapping mapping, ActivityInstance activityInstance)
protected ScopeImpl
AbstractProcessInstanceModificationCommand. getScopeForActivityInstance(ProcessDefinitionImpl processDefinition, ActivityInstance activityInstance)
protected List<TransitionInstance>
ActivityCancellationCmd. getTransitionInstancesForActivity(ActivityInstance tree, Set<String> parentScopeIds)
void
ActivityCancellationCmd. setActivityInstanceTreeToCancel(ActivityInstance activityInstanceTreeToCancel)
-
Uses of ActivityInstance in org.camunda.bpm.engine.impl.migration.instance
Fields in org.camunda.bpm.engine.impl.migration.instance declared as ActivityInstance Modifier and Type Field Description protected ActivityInstance
MigratingActivityInstance. activityInstance
Methods in org.camunda.bpm.engine.impl.migration.instance that return ActivityInstance Modifier and Type Method Description ActivityInstance
MigratingActivityInstance. getActivityInstance()
Methods in org.camunda.bpm.engine.impl.migration.instance with parameters of type ActivityInstance Modifier and Type Method Description MigratingActivityInstance
MigratingProcessInstance. addActivityInstance(MigrationInstruction migrationInstruction, ActivityInstance activityInstance, ScopeImpl sourceScope, ScopeImpl targetScope, ExecutionEntity scopeExecution)
Constructors in org.camunda.bpm.engine.impl.migration.instance with parameters of type ActivityInstance Constructor Description MigratingActivityInstance(ActivityInstance activityInstance, MigrationInstruction migrationInstruction, ScopeImpl sourceScope, ScopeImpl targetScope, ExecutionEntity scopeExecution)
Creates a migrating activity instances -
Uses of ActivityInstance in org.camunda.bpm.engine.impl.migration.instance.parser
Fields in org.camunda.bpm.engine.impl.migration.instance.parser with type parameters of type ActivityInstance Modifier and Type Field Description protected MigratingInstanceParseHandler<ActivityInstance>
MigratingInstanceParser. activityInstanceHandler
Methods in org.camunda.bpm.engine.impl.migration.instance.parser that return types with arguments of type ActivityInstance Modifier and Type Method Description MigratingInstanceParseHandler<ActivityInstance>
MigratingInstanceParser. getActivityInstanceHandler()
protected Collection<ActivityInstance>
ActivityInstanceWalker. nextElements()
Methods in org.camunda.bpm.engine.impl.migration.instance.parser with parameters of type ActivityInstance Modifier and Type Method Description void
ActivityInstanceHandler. handle(MigratingInstanceParseContext parseContext, ActivityInstance element)
Constructors in org.camunda.bpm.engine.impl.migration.instance.parser with parameters of type ActivityInstance Constructor Description ActivityInstanceWalker(ActivityInstance initialElement)
-
Uses of ActivityInstance in org.camunda.bpm.engine.impl.persistence.entity
Classes in org.camunda.bpm.engine.impl.persistence.entity that implement ActivityInstance Modifier and Type Class Description class
ActivityInstanceImpl
Fields in org.camunda.bpm.engine.impl.persistence.entity declared as ActivityInstance Modifier and Type Field Description protected ActivityInstance[]
ActivityInstanceImpl. childActivityInstances
protected static ActivityInstance[]
ActivityInstanceImpl. NO_ACTIVITY_INSTANCES
Methods in org.camunda.bpm.engine.impl.persistence.entity that return ActivityInstance Modifier and Type Method Description ActivityInstance[]
ActivityInstanceImpl. getActivityInstances(String activityId)
ActivityInstance[]
ActivityInstanceImpl. getChildActivityInstances()
Methods in org.camunda.bpm.engine.impl.persistence.entity with parameters of type ActivityInstance Modifier and Type Method Description void
ActivityInstanceImpl. setChildActivityInstances(ActivityInstance[] childInstances)
Method parameters in org.camunda.bpm.engine.impl.persistence.entity with type arguments of type ActivityInstance Modifier and Type Method Description protected void
ActivityInstanceImpl. collectActivityInstances(String activityId, List<ActivityInstance> instances)
-
Uses of ActivityInstance in org.camunda.bpm.engine.impl.test
Methods in org.camunda.bpm.engine.impl.test that return types with arguments of type ActivityInstance Modifier and Type Method Description protected List<ActivityInstance>
AbstractProcessEngineTestCase. getInstancesForActivitiyId(ActivityInstance activityInstance, String activityId)
Deprecated.protected List<ActivityInstance>
AbstractProcessEngineTestCase. getInstancesForActivityId(ActivityInstance activityInstance, String activityId)
Methods in org.camunda.bpm.engine.impl.test with parameters of type ActivityInstance Modifier and Type Method Description protected List<ActivityInstance>
AbstractProcessEngineTestCase. getInstancesForActivitiyId(ActivityInstance activityInstance, String activityId)
Deprecated.protected List<ActivityInstance>
AbstractProcessEngineTestCase. getInstancesForActivityId(ActivityInstance activityInstance, String activityId)
-
Uses of ActivityInstance in org.camunda.bpm.engine.rest.dto.runtime
Methods in org.camunda.bpm.engine.rest.dto.runtime with parameters of type ActivityInstance Modifier and Type Method Description static ActivityInstanceDto
ActivityInstanceDto. fromActivityInstance(ActivityInstance instance)
static ActivityInstanceDto[]
ActivityInstanceDto. fromListOfActivityInstance(ActivityInstance[] instances)
-
Uses of ActivityInstance in org.camunda.bpm.engine.runtime
Methods in org.camunda.bpm.engine.runtime that return ActivityInstance Modifier and Type Method Description ActivityInstance[]
ActivityInstance. getActivityInstances(String activityId)
all descendant (children, grandchildren, etc.) activity instances that are instances of the supplied activityActivityInstance[]
ActivityInstance. getChildActivityInstances()
Returns the child activity instances.
-