org.camunda.bpm.engine.runtime
Interface TransitionInstance

All Superinterfaces:
ProcessElementInstance
All Known Implementing Classes:
TransitionInstanceImpl

public interface TransitionInstance
extends ProcessElementInstance

A transition instance represents an execution token that has just completed a transition (sequence flow in BPMN) and is now about to start an activity. The execution token has not yet entered the activity which is why the corresponding activity instance does not yet exist.

Transition instances are usually the result of asynchronous continuations.

Author:
Daniel Meyer

Method Summary
 String getExecutionId()
          returns the id of of the execution that is currently executing this transition instance
 String getTargetActivityId()
          returns the id of the target activity
 
Methods inherited from interface org.camunda.bpm.engine.runtime.ProcessElementInstance
getId, getParentActivityInstanceId, getProcessDefinitionId, getProcessInstanceId
 

Method Detail

getTargetActivityId

String getTargetActivityId()
returns the id of the target activity


getExecutionId

String getExecutionId()
returns the id of of the execution that is currently executing this transition instance



Copyright © 2014 camunda services GmbH. All rights reserved.