org.camunda.bpm.engine.runtime
Interface CaseExecution

All Known Subinterfaces:
CaseInstance
All Known Implementing Classes:
CaseExecutionEntity

public interface CaseExecution

Represent a planned item in a case instance.

Note that a CaseInstance also is an case execution.

Author:
Roman Smirnov

Method Summary
 String getCaseInstanceId()
          Id of the root of the case execution tree representing the case instance.
 String getId()
          The unique identifier of the case execution.
 boolean isActive()
          Returns true if the case execution is active.
 boolean isDisabled()
          Returns true if the case execution is disabled.
 boolean isEnabled()
          Returns true if the case execution is enabled.
 

Method Detail

getId

String getId()

The unique identifier of the case execution.


getCaseInstanceId

String getCaseInstanceId()

Id of the root of the case execution tree representing the case instance.

It is the same as getId() if this case execution is the case instance.


isActive

boolean isActive()

Returns true if the case execution is active.


isEnabled

boolean isEnabled()

Returns true if the case execution is enabled.

Note: If this case execution is the case execution, it will return always false.


isDisabled

boolean isDisabled()

Returns true if the case execution is disabled.

Note: If this case execution is the case instance, it will return always false.



Copyright © 2014 camunda services GmbH. All Rights Reserved.