| Package | Description | 
|---|---|
| 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 DeploymentsRuntimeService:
    For starting and searching ProcessInstancesTaskService:
    Exposes operations to manage human (standalone) Tasks,
    such as claiming, completing and assigning tasksIdentityService:
    Used for managing Users,
    Groups and the relations between themManagementService:
    Exposes engine admin and maintenance operations,
    which have no relation to the runtime execution 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.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 the  
RuntimeService. | 
| Modifier and Type | Method and Description | 
|---|---|
ActivityInstance | 
RuntimeService.getActivityInstance(String processInstanceId)
Allows retrieving the activity instance tree for a given process instance. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
ActivityInstance | 
RuntimeServiceImpl.getActivityInstance(String processInstanceId)  | 
| Modifier and Type | Method and Description | 
|---|---|
ExecutionEntity | 
ActivityExecutionTreeMapping.getExecution(ActivityInstance activityInstance)  | 
| Modifier and Type | Method and Description | 
|---|---|
ActivityInstance | 
GetActivityInstanceCmd.execute(CommandContext commandContext)  | 
protected ActivityInstance | 
AbstractProcessInstanceModificationCommand.findActivityInstance(ActivityInstance tree,
                    String activityInstanceId)  | 
| Modifier and Type | Method and Description | 
|---|---|
protected List<ActivityInstance> | 
ActivityCancellationCmd.getActivityInstancesForActivity(ActivityInstance tree,
                               Set<String> parentScopeIds)  | 
| Modifier and Type | Method and Description | 
|---|---|
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)  | 
| Modifier and Type | Field and Description | 
|---|---|
protected ActivityInstance | 
MigratingActivityInstance.activityInstance  | 
| Modifier and Type | Method and Description | 
|---|---|
ActivityInstance | 
MigratingActivityInstance.getActivityInstance()  | 
| Modifier and Type | Method and Description | 
|---|---|
MigratingActivityInstance | 
MigratingProcessInstance.addActivityInstance(MigrationInstruction migrationInstruction,
                   ActivityInstance activityInstance,
                   ScopeImpl sourceScope,
                   ScopeImpl targetScope,
                   ExecutionEntity scopeExecution)  | 
| Constructor and Description | 
|---|
MigratingActivityInstance(ActivityInstance activityInstance,
                         MigrationInstruction migrationInstruction,
                         ScopeImpl sourceScope,
                         ScopeImpl targetScope,
                         ExecutionEntity scopeExecution)
Creates a migrating activity instances 
 | 
| Modifier and Type | Field and Description | 
|---|---|
protected MigratingInstanceParseHandler<ActivityInstance> | 
MigratingInstanceParser.activityInstanceHandler  | 
| Modifier and Type | Method and Description | 
|---|---|
MigratingInstanceParseHandler<ActivityInstance> | 
MigratingInstanceParser.getActivityInstanceHandler()  | 
protected Collection<ActivityInstance> | 
ActivityInstanceWalker.nextElements()  | 
| Modifier and Type | Method and Description | 
|---|---|
void | 
ActivityInstanceHandler.handle(MigratingInstanceParseContext parseContext,
      ActivityInstance element)  | 
| Constructor and Description | 
|---|
ActivityInstanceWalker(ActivityInstance initialElement)  | 
| Modifier and Type | Class and Description | 
|---|---|
class  | 
ActivityInstanceImpl  | 
| Modifier and Type | Field and Description | 
|---|---|
protected ActivityInstance[] | 
ActivityInstanceImpl.childActivityInstances  | 
| Modifier and Type | Method and Description | 
|---|---|
ActivityInstance[] | 
ActivityInstanceImpl.getActivityInstances(String activityId)  | 
ActivityInstance[] | 
ActivityInstanceImpl.getChildActivityInstances()  | 
| Modifier and Type | Method and Description | 
|---|---|
void | 
ActivityInstanceImpl.setChildActivityInstances(ActivityInstance[] childInstances)  | 
| Modifier and Type | Method and Description | 
|---|---|
protected void | 
ActivityInstanceImpl.collectActivityInstances(String activityId,
                        List<ActivityInstance> instances)  | 
| Modifier and Type | Method and Description | 
|---|---|
protected List<ActivityInstance> | 
AbstractProcessEngineTestCase.getInstancesForActivitiyId(ActivityInstance activityInstance,
                          String activityId)
Deprecated.  
 | 
protected List<ActivityInstance> | 
AbstractProcessEngineTestCase.getInstancesForActivityId(ActivityInstance activityInstance,
                         String activityId)  | 
| Modifier and Type | Method and Description | 
|---|---|
protected List<ActivityInstance> | 
AbstractProcessEngineTestCase.getInstancesForActivitiyId(ActivityInstance activityInstance,
                          String activityId)
Deprecated.  
 | 
protected List<ActivityInstance> | 
AbstractProcessEngineTestCase.getInstancesForActivityId(ActivityInstance activityInstance,
                         String activityId)  | 
| Modifier and Type | Method and Description | 
|---|---|
static ActivityInstanceDto | 
ActivityInstanceDto.fromActivityInstance(ActivityInstance instance)  | 
static ActivityInstanceDto[] | 
ActivityInstanceDto.fromListOfActivityInstance(ActivityInstance[] instances)  | 
| Modifier and Type | Method and Description | 
|---|---|
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 © 2017. All rights reserved.