Uses of Class
org.camunda.bpm.engine.impl.cmmn.execution.CmmnExecution

Packages that use CmmnExecution
org.camunda.bpm.engine.impl.cmmn.entity.repository   
org.camunda.bpm.engine.impl.cmmn.entity.runtime   
org.camunda.bpm.engine.impl.cmmn.execution   
org.camunda.bpm.engine.impl.cmmn.model   
org.camunda.bpm.engine.impl.cmmn.operation   
org.camunda.bpm.engine.impl.persistence.entity   
org.camunda.bpm.engine.impl.pvm.runtime   
org.camunda.bpm.engine.impl.test   
org.camunda.bpm.engine.impl.util   
 

Uses of CmmnExecution in org.camunda.bpm.engine.impl.cmmn.entity.repository
 

Methods in org.camunda.bpm.engine.impl.cmmn.entity.repository that return CmmnExecution
protected  CmmnExecution CaseDefinitionEntity.newCaseInstance()
           
 

Uses of CmmnExecution in org.camunda.bpm.engine.impl.cmmn.entity.runtime
 

Subclasses of CmmnExecution in org.camunda.bpm.engine.impl.cmmn.entity.runtime
 class CaseExecutionEntity
           
 

Methods in org.camunda.bpm.engine.impl.cmmn.entity.runtime that return CmmnExecution
 CmmnExecution CaseSentryPartEntity.getSourceCaseExecution()
           
 CmmnExecution CaseExecutionEntity.getSuperCaseExecution()
           
 

Methods in org.camunda.bpm.engine.impl.cmmn.entity.runtime with parameters of type CmmnExecution
 void CaseSentryPartEntity.setCaseExecution(CmmnExecution caseExecution)
           
 void CaseExecutionEntity.setCaseInstance(CmmnExecution caseInstance)
           
 void CaseSentryPartEntity.setCaseInstance(CmmnExecution caseInstance)
           
 void CaseExecutionEntity.setParent(CmmnExecution parent)
           
 void CaseSentryPartEntity.setSourceCaseExecution(CmmnExecution sourceCaseExecution)
           
 void CaseExecutionEntity.setSubCaseInstance(CmmnExecution subCaseInstance)
           
 void CaseExecutionEntity.setSuperCaseExecution(CmmnExecution superCaseExecution)
           
 

Uses of CmmnExecution in org.camunda.bpm.engine.impl.cmmn.execution
 

Subclasses of CmmnExecution in org.camunda.bpm.engine.impl.cmmn.execution
 class CaseExecutionImpl
           
 

Methods in org.camunda.bpm.engine.impl.cmmn.execution that return CmmnExecution
protected abstract  CmmnExecution CmmnExecution.createCaseExecution(CmmnActivity activity)
           
abstract  CmmnExecution CmmnExecution.createSubCaseInstance(CmmnCaseDefinition caseDefinition)
           
abstract  CmmnExecution CmmnExecution.createSubCaseInstance(CmmnCaseDefinition caseDefinition, String businessKey)
           
 CmmnExecution CmmnExecution.findCaseExecution(String activityId)
           
abstract  CmmnExecution CmmnSentryPart.getCaseExecution()
           
 CmmnExecution CaseSentryPartImpl.getCaseExecution()
           
abstract  CmmnExecution CmmnExecution.getCaseInstance()
          ensures initialization and returns the process instance.
abstract  CmmnExecution CmmnSentryPart.getCaseInstance()
           
abstract  CmmnExecution CmmnExecution.getParent()
          ensures initialization and returns the parent
abstract  CmmnExecution CmmnSentryPart.getSourceCaseExecution()
           
 CmmnExecution CaseSentryPartImpl.getSourceCaseExecution()
           
abstract  CmmnExecution CmmnExecution.getSubCaseInstance()
           
abstract  CmmnExecution CmmnExecution.getSuperCaseExecution()
           
protected abstract  CmmnExecution CmmnExecution.newCaseExecution()
           
 

Methods in org.camunda.bpm.engine.impl.cmmn.execution that return types with arguments of type CmmnExecution
 List<CmmnExecution> CmmnExecution.createChildExecutions(List<CmmnActivity> activities)
           
 List<CmmnExecution> CmmnActivityExecution.createChildExecutions(List<CmmnActivity> activities)
          Creates new child case executions for each given CmmnActivity.
abstract  List<? extends CmmnExecution> CmmnExecution.getCaseExecutions()
           
 List<? extends CmmnExecution> CmmnActivityExecution.getCaseExecutions()
          Returns a List of child case executions.
protected abstract  List<? extends CmmnExecution> CmmnExecution.getCaseExecutionsInternal()
           
 

Methods in org.camunda.bpm.engine.impl.cmmn.execution with parameters of type CmmnExecution
protected  List<String> CmmnExecution.collectAffectedSentries(CmmnExecution child, String transition)
           
 void CmmnExecution.handleChildTransition(CmmnExecution child, String transition)
           
abstract  void CmmnSentryPart.setCaseExecution(CmmnExecution caseExecution)
           
 void CaseSentryPartImpl.setCaseExecution(CmmnExecution caseExecution)
           
abstract  void CmmnExecution.setCaseInstance(CmmnExecution caseInstance)
           
 void CaseExecutionImpl.setCaseInstance(CmmnExecution caseInstance)
           
abstract  void CmmnSentryPart.setCaseInstance(CmmnExecution caseInstance)
           
 void CaseSentryPartImpl.setCaseInstance(CmmnExecution caseInstance)
           
abstract  void CmmnExecution.setParent(CmmnExecution parent)
           
 void CaseExecutionImpl.setParent(CmmnExecution parent)
           
abstract  void CmmnSentryPart.setSourceCaseExecution(CmmnExecution sourceCaseExecution)
           
 void CaseSentryPartImpl.setSourceCaseExecution(CmmnExecution sourceCaseExecution)
           
abstract  void CmmnExecution.setSubCaseInstance(CmmnExecution subCaseInstance)
           
 void CaseExecutionImpl.setSubCaseInstance(CmmnExecution subCaseInstance)
           
abstract  void CmmnExecution.setSuperCaseExecution(CmmnExecution superCaseExecution)
           
 void CaseExecutionImpl.setSuperCaseExecution(CmmnExecution superCaseExecution)
           
 

Method parameters in org.camunda.bpm.engine.impl.cmmn.execution with type arguments of type CmmnExecution
 void CmmnExecution.triggerChildExecutionsLifecycle(List<CmmnExecution> children)
           
 void CmmnActivityExecution.triggerChildExecutionsLifecycle(List<CmmnExecution> children)
          This method triggers for each given case execution the lifecycle.
 

Uses of CmmnExecution in org.camunda.bpm.engine.impl.cmmn.model
 

Methods in org.camunda.bpm.engine.impl.cmmn.model that return CmmnExecution
protected  CmmnExecution CmmnCaseDefinition.newCaseInstance()
           
 

Uses of CmmnExecution in org.camunda.bpm.engine.impl.cmmn.operation
 

Methods in org.camunda.bpm.engine.impl.cmmn.operation that return CmmnExecution
protected  CmmnExecution AbstractAtomicOperationCaseExecutionSuspend.eventNotificationsStarted(CmmnExecution execution)
           
protected  CmmnExecution AtomicOperationCaseInstanceClose.eventNotificationsStarted(CmmnExecution execution)
           
protected  CmmnExecution AtomicOperationCaseExecutionReenable.eventNotificationsStarted(CmmnExecution execution)
           
protected  CmmnExecution AbstractAtomicOperationCaseExecutionTerminate.eventNotificationsStarted(CmmnExecution execution)
           
protected  CmmnExecution AtomicOperationCaseInstanceCreate.eventNotificationsStarted(CmmnExecution execution)
           
protected  CmmnExecution AtomicOperationCaseExecutionManualStart.eventNotificationsStarted(CmmnExecution execution)
           
protected  CmmnExecution AtomicOperationCaseExecutionReactivate.eventNotificationsStarted(CmmnExecution execution)
           
protected  CmmnExecution AtomicOperationCaseExecutionCreate.eventNotificationsStarted(CmmnExecution execution)
           
protected  CmmnExecution AbstractAtomicOperationCaseExecutionResume.eventNotificationsStarted(CmmnExecution execution)
           
protected  CmmnExecution AtomicOperationCaseExecutionEnable.eventNotificationsStarted(CmmnExecution execution)
           
protected  CmmnExecution AtomicOperationCaseExecutionStart.eventNotificationsStarted(CmmnExecution execution)
           
protected  CmmnExecution AbstractAtomicOperationCaseExecutionComplete.eventNotificationsStarted(CmmnExecution execution)
           
protected  CmmnExecution AtomicOperationCaseExecutionDisable.eventNotificationsStarted(CmmnExecution execution)
           
protected  CmmnExecution AtomicOperationCaseExecutionDeleteCascade.findFirstLeaf(CmmnExecution execution)
           
 

Methods in org.camunda.bpm.engine.impl.cmmn.operation with parameters of type CmmnExecution
protected  void AbstractCmmnEventAtomicOperation.eventNotificationsCompleted(CmmnExecution execution)
           
protected  CmmnExecution AbstractAtomicOperationCaseExecutionSuspend.eventNotificationsStarted(CmmnExecution execution)
           
protected  CmmnExecution AtomicOperationCaseInstanceClose.eventNotificationsStarted(CmmnExecution execution)
           
protected  CmmnExecution AtomicOperationCaseExecutionReenable.eventNotificationsStarted(CmmnExecution execution)
           
protected  CmmnExecution AbstractAtomicOperationCaseExecutionTerminate.eventNotificationsStarted(CmmnExecution execution)
           
protected  CmmnExecution AtomicOperationCaseInstanceCreate.eventNotificationsStarted(CmmnExecution execution)
           
protected  CmmnExecution AtomicOperationCaseExecutionManualStart.eventNotificationsStarted(CmmnExecution execution)
           
protected  CmmnExecution AtomicOperationCaseExecutionReactivate.eventNotificationsStarted(CmmnExecution execution)
           
protected  CmmnExecution AtomicOperationCaseExecutionCreate.eventNotificationsStarted(CmmnExecution execution)
           
protected  CmmnExecution AbstractAtomicOperationCaseExecutionResume.eventNotificationsStarted(CmmnExecution execution)
           
protected  CmmnExecution AtomicOperationCaseExecutionEnable.eventNotificationsStarted(CmmnExecution execution)
           
protected  CmmnExecution AtomicOperationCaseExecutionStart.eventNotificationsStarted(CmmnExecution execution)
           
protected  CmmnExecution AbstractAtomicOperationCaseExecutionComplete.eventNotificationsStarted(CmmnExecution execution)
           
protected  CmmnExecution AtomicOperationCaseExecutionDisable.eventNotificationsStarted(CmmnExecution execution)
           
 void AtomicOperationCaseExecutionDeleteCascade.execute(CmmnExecution execution)
           
 void CmmnAtomicOperation.execute(CmmnExecution execution)
           
 void AbstractAtomicOperationCaseExecutionSuspending.execute(CmmnExecution execution)
           
 void AtomicOperationCaseExecutionFireExitCriteria.execute(CmmnExecution execution)
           
 void AtomicOperationCaseExecutionFireEntryCriteria.execute(CmmnExecution execution)
           
 void AtomicOperationCaseExecutionCreated.execute(CmmnExecution execution)
           
 void AbstractAtomicOperationCaseExecutionTerminating.execute(CmmnExecution execution)
           
protected  CmmnExecution AtomicOperationCaseExecutionDeleteCascade.findFirstLeaf(CmmnExecution execution)
           
protected  CaseExecutionState AbstractAtomicOperationCaseExecutionResume.getPreviousState(CmmnExecution execution)
           
protected  CmmnActivity AbstractCmmnEventAtomicOperation.getScope(CmmnExecution execution)
           
 boolean AtomicOperationCaseExecutionDeleteCascade.isAsync(CmmnExecution execution)
           
 boolean CmmnAtomicOperation.isAsync(CmmnExecution execution)
           
 boolean AbstractAtomicOperationCaseExecutionSuspending.isAsync(CmmnExecution execution)
           
 boolean AtomicOperationCaseExecutionFireExitCriteria.isAsync(CmmnExecution execution)
           
 boolean AtomicOperationCaseExecutionFireEntryCriteria.isAsync(CmmnExecution execution)
           
 boolean AtomicOperationCaseExecutionCreated.isAsync(CmmnExecution execution)
           
 boolean AbstractCmmnEventAtomicOperation.isAsync(CmmnExecution execution)
           
 boolean AbstractAtomicOperationCaseExecutionTerminating.isAsync(CmmnExecution execution)
           
protected  void AbstractAtomicOperationCaseExecutionSuspend.notifyParent(CmmnExecution parent, CmmnExecution execution)
           
protected  void AbstractAtomicOperationCaseExecutionTerminate.notifyParent(CmmnExecution parent, CmmnExecution execution)
           
protected  void AbstractCmmnEventAtomicOperation.performTransitionNotification(CmmnExecution execution)
           
protected  void AbstractAtomicOperationCaseExecutionSuspend.postTransitionNotification(CmmnExecution execution)
           
protected  void AtomicOperationCaseInstanceClose.postTransitionNotification(CmmnExecution execution)
           
protected  void AbstractAtomicOperationCaseExecutionTerminate.postTransitionNotification(CmmnExecution execution)
           
protected  void AtomicOperationCaseInstanceCreate.postTransitionNotification(CmmnExecution execution)
           
protected  void AtomicOperationCaseExecutionManualStart.postTransitionNotification(CmmnExecution execution)
           
protected  void AtomicOperationCaseExecutionReactivate.postTransitionNotification(CmmnExecution execution)
           
protected  void AtomicOperationCaseExecutionCreate.postTransitionNotification(CmmnExecution execution)
           
protected  void AbstractAtomicOperationCaseExecutionResume.postTransitionNotification(CmmnExecution execution)
           
protected  void AtomicOperationCaseExecutionStart.postTransitionNotification(CmmnExecution execution)
           
protected  void AbstractAtomicOperationCaseExecutionComplete.postTransitionNotification(CmmnExecution execution)
           
protected  void AbstractCmmnEventAtomicOperation.postTransitionNotification(CmmnExecution execution)
           
protected  void AbstractCmmnEventAtomicOperation.preTransitionNotification(CmmnExecution execution)
           
protected  void AtomicOperationCaseExecutionDisable.preTransitionNotification(CmmnExecution execution)
           
protected  void AtomicOperationCaseExecutionComplete.triggerBehavior(CmmnActivityBehavior behavior, CmmnExecution execution)
           
protected  void AtomicOperationCaseExecutionSuspendingOnSuspension.triggerBehavior(CmmnActivityBehavior behavior, CmmnExecution execution)
           
protected  void AtomicOperationCaseExecutionParentResume.triggerBehavior(CmmnActivityBehavior behavior, CmmnExecution execution)
           
protected  void AtomicOperationCaseExecutionTerminatingOnTermination.triggerBehavior(CmmnActivityBehavior behavior, CmmnExecution execution)
           
protected abstract  void AbstractAtomicOperationCaseExecutionSuspending.triggerBehavior(CmmnActivityBehavior behavior, CmmnExecution execution)
           
protected  void AtomicOperationCaseExecutionTerminatingOnParentTermination.triggerBehavior(CmmnActivityBehavior behavior, CmmnExecution execution)
           
protected  void AtomicOperationCaseExecutionOccur.triggerBehavior(CmmnActivityBehavior behavior, CmmnExecution execution)
           
protected  void AtomicOperationCaseExecutionSuspendingOnParentSuspension.triggerBehavior(CmmnActivityBehavior behavior, CmmnExecution execution)
           
protected  void AtomicOperationCaseExecutionTerminatingOnExit.triggerBehavior(CmmnActivityBehavior behavior, CmmnExecution execution)
           
protected  void AtomicOperationCaseExecutionManualComplete.triggerBehavior(CmmnActivityBehavior behavior, CmmnExecution execution)
           
protected abstract  void AbstractAtomicOperationCaseExecutionResume.triggerBehavior(CmmnActivityBehavior behavior, CmmnExecution execution)
           
protected abstract  void AbstractAtomicOperationCaseExecutionComplete.triggerBehavior(CmmnActivityBehavior behavior, CmmnExecution execution)
           
protected  void AtomicOperationCaseExecutionResume.triggerBehavior(CmmnActivityBehavior behavior, CmmnExecution execution)
           
protected abstract  void AbstractAtomicOperationCaseExecutionTerminating.triggerBehavior(CmmnActivityBehavior behavior, CmmnExecution execution)
           
 

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

Methods in org.camunda.bpm.engine.impl.persistence.entity with parameters of type CmmnExecution
 void ExecutionEntity.setSubCaseInstance(CmmnExecution subCaseInstance)
           
 void ExecutionEntity.setSuperCaseExecution(CmmnExecution superCaseExecution)
           
 

Uses of CmmnExecution in org.camunda.bpm.engine.impl.pvm.runtime
 

Methods in org.camunda.bpm.engine.impl.pvm.runtime that return CmmnExecution
abstract  CmmnExecution PvmExecutionImpl.createSubCaseInstance(CmmnCaseDefinition caseDefinition)
           
abstract  CmmnExecution PvmExecutionImpl.createSubCaseInstance(CmmnCaseDefinition caseDefinition, String businessKey)
           
abstract  CmmnExecution PvmExecutionImpl.getSubCaseInstance()
           
abstract  CmmnExecution PvmExecutionImpl.getSuperCaseExecution()
           
 

Methods in org.camunda.bpm.engine.impl.pvm.runtime with parameters of type CmmnExecution
abstract  void PvmExecutionImpl.setSubCaseInstance(CmmnExecution subCaseInstance)
           
 void ExecutionImpl.setSubCaseInstance(CmmnExecution subCaseInstance)
           
abstract  void PvmExecutionImpl.setSuperCaseExecution(CmmnExecution superCaseExecution)
           
 void ExecutionImpl.setSuperCaseExecution(CmmnExecution superCaseExecution)
           
 

Uses of CmmnExecution in org.camunda.bpm.engine.impl.test
 

Methods in org.camunda.bpm.engine.impl.test that return CmmnExecution
protected  CmmnExecution CmmnProcessEngineTestCase.HelperCaseCommand.getExecution(String caseExecutionId)
           
 

Uses of CmmnExecution in org.camunda.bpm.engine.impl.util
 

Methods in org.camunda.bpm.engine.impl.util with parameters of type CmmnExecution
static CmmnActivityBehavior ActivityBehaviorUtil.getActivityBehavior(CmmnExecution execution)
           
 



Copyright © 2015 camunda services GmbH. All rights reserved.