Uses of Interface
org.camunda.bpm.engine.runtime.ActivityInstance

Packages that use ActivityInstance
org.camunda.bpm.engine Public API of the camunda BPM 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 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.persistence.entity   
org.camunda.bpm.engine.impl.test   
org.camunda.bpm.engine.runtime Classes related to the RuntimeService
 

Uses of ActivityInstance in org.camunda.bpm.engine
 

Methods in org.camunda.bpm.engine that return ActivityInstance
 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
 ActivityInstance RuntimeServiceImpl.getActivityInstance(String processInstanceId)
           
 

Uses of ActivityInstance in org.camunda.bpm.engine.impl.cmd
 

Methods in org.camunda.bpm.engine.impl.cmd that return ActivityInstance
 ActivityInstance GetActivityInstanceCmd.execute(CommandContext commandContext)
           
protected  ActivityInstance AbstractProcessInstanceModificationCommand.findActivityInstance(ActivityInstance tree, String activityInstanceId)
           
 

Methods in org.camunda.bpm.engine.impl.cmd that return types with arguments of type ActivityInstance
protected  List<ActivityInstance> ActivityCancellationCmd.getActivityInstancesForActivity(ActivityInstance tree, Set<String> parentScopeIds)
           
 

Methods in org.camunda.bpm.engine.impl.cmd with parameters of type ActivityInstance
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)
           
 

Uses of ActivityInstance in org.camunda.bpm.engine.impl.persistence.entity
 

Classes in org.camunda.bpm.engine.impl.persistence.entity that implement ActivityInstance
 class ActivityInstanceImpl
           
 

Fields in org.camunda.bpm.engine.impl.persistence.entity declared as ActivityInstance
protected  ActivityInstance[] ActivityInstanceImpl.childActivityInstances
           
 

Methods in org.camunda.bpm.engine.impl.persistence.entity that return ActivityInstance
 ActivityInstance[] ActivityInstanceImpl.getActivityInstances(String activityId)
           
 ActivityInstance[] ActivityInstanceImpl.getChildActivityInstances()
           
 

Methods in org.camunda.bpm.engine.impl.persistence.entity with parameters of type ActivityInstance
 void ActivityInstanceImpl.setChildActivityInstances(ActivityInstance[] childInstances)
           
 

Method parameters in org.camunda.bpm.engine.impl.persistence.entity with type arguments of type ActivityInstance
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
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
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.runtime
 

Methods in org.camunda.bpm.engine.runtime that return ActivityInstance
 ActivityInstance[] ActivityInstance.getActivityInstances(String activityId)
          all descendant (children, grandchildren, etc.) activity instances that are instances of the supplied activity
 ActivityInstance[] ActivityInstance.getChildActivityInstances()
          Returns the child activity instances.
 



Copyright © 2015 camunda services GmbH. All rights reserved.