Uses of Interface
org.camunda.bpm.engine.delegate.DelegateCaseExecution

Packages that use DelegateCaseExecution
org.camunda.bpm.engine.delegate Interfaces used to include Java code in a process as the behavior of an activity or as a listener to process events with JavaDelegates. 
org.camunda.bpm.engine.impl.cmmn.delegate   
org.camunda.bpm.engine.impl.cmmn.entity.runtime   
org.camunda.bpm.engine.impl.cmmn.execution   
org.camunda.bpm.engine.impl.cmmn.listener   
org.camunda.bpm.engine.impl.history.producer   
org.camunda.bpm.engine.impl.history.transformer   
org.camunda.bpm.engine.impl.metrics.parser   
org.camunda.bpm.engine.impl.persistence.entity   
org.camunda.bpm.engine.impl.variable.listener   
 

Uses of DelegateCaseExecution in org.camunda.bpm.engine.delegate
 

Methods in org.camunda.bpm.engine.delegate that return DelegateCaseExecution
 DelegateCaseExecution DelegateTask.getCaseExecution()
          Returns the case execution currently at the task.
 DelegateCaseExecution DelegateCaseVariableInstance.getSourceExecution()
          The case execution in which context the variable was created/updated/deleted.
 

Methods in org.camunda.bpm.engine.delegate with parameters of type DelegateCaseExecution
 void CaseExecutionListener.notify(DelegateCaseExecution caseExecution)
           
 

Uses of DelegateCaseExecution in org.camunda.bpm.engine.impl.cmmn.delegate
 

Fields in org.camunda.bpm.engine.impl.cmmn.delegate declared as DelegateCaseExecution
protected  DelegateCaseExecution CaseExecutionListenerInvocation.caseExecution
           
 

Constructors in org.camunda.bpm.engine.impl.cmmn.delegate with parameters of type DelegateCaseExecution
CaseExecutionListenerInvocation(CaseExecutionListener listenerInstance, DelegateCaseExecution caseExecution)
           
 

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

Classes in org.camunda.bpm.engine.impl.cmmn.entity.runtime that implement DelegateCaseExecution
 class CaseExecutionEntity
           
 

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

Subinterfaces of DelegateCaseExecution in org.camunda.bpm.engine.impl.cmmn.execution
 interface CmmnActivityExecution
           
 interface CmmnCaseInstance
           
 

Classes in org.camunda.bpm.engine.impl.cmmn.execution that implement DelegateCaseExecution
 class CaseExecutionImpl
           
 class CmmnExecution
           
 

Uses of DelegateCaseExecution in org.camunda.bpm.engine.impl.cmmn.listener
 

Methods in org.camunda.bpm.engine.impl.cmmn.listener with parameters of type DelegateCaseExecution
 void ClassDelegateCaseExecutionListener.notify(DelegateCaseExecution caseExecution)
           
 void DelegateExpressionCaseExecutionListener.notify(DelegateCaseExecution caseExecution)
           
 void ScriptCaseExecutionListener.notify(DelegateCaseExecution caseExecution)
           
 void ExpressionCaseExecutionListener.notify(DelegateCaseExecution caseExecution)
           
 

Uses of DelegateCaseExecution in org.camunda.bpm.engine.impl.history.producer
 

Methods in org.camunda.bpm.engine.impl.history.producer with parameters of type DelegateCaseExecution
 HistoryEvent CmmnHistoryEventProducer.createCaseActivityInstanceCreateEvt(DelegateCaseExecution caseExecution)
          Creates the history event fired when a case activity instance is created.
 HistoryEvent DefaultCmmnHistoryEventProducer.createCaseActivityInstanceCreateEvt(DelegateCaseExecution caseExecution)
           
 HistoryEvent CmmnHistoryEventProducer.createCaseActivityInstanceEndEvt(DelegateCaseExecution caseExecution)
          Creates the history event fired when a case activity instance is ended.
 HistoryEvent DefaultCmmnHistoryEventProducer.createCaseActivityInstanceEndEvt(DelegateCaseExecution caseExecution)
           
 HistoryEvent CmmnHistoryEventProducer.createCaseActivityInstanceUpdateEvt(DelegateCaseExecution caseExecution)
          Creates the history event fired when a case activity instance is updated.
 HistoryEvent DefaultCmmnHistoryEventProducer.createCaseActivityInstanceUpdateEvt(DelegateCaseExecution caseExecution)
           
 HistoryEvent CmmnHistoryEventProducer.createCaseInstanceCloseEvt(DelegateCaseExecution caseExecution)
          Creates the history event fired when a case instance is closed.
 HistoryEvent DefaultCmmnHistoryEventProducer.createCaseInstanceCloseEvt(DelegateCaseExecution caseExecution)
           
 HistoryEvent CmmnHistoryEventProducer.createCaseInstanceCreateEvt(DelegateCaseExecution caseExecution)
          Creates the history event fired when a case instance is created.
 HistoryEvent DefaultCmmnHistoryEventProducer.createCaseInstanceCreateEvt(DelegateCaseExecution caseExecution)
           
 HistoryEvent CmmnHistoryEventProducer.createCaseInstanceUpdateEvt(DelegateCaseExecution caseExecution)
          Creates the history event fired when a case instance is updated.
 HistoryEvent DefaultCmmnHistoryEventProducer.createCaseInstanceUpdateEvt(DelegateCaseExecution caseExecution)
           
 HistoryEvent DefaultDmnHistoryEventProducer.createDecisionEvaluatedEvt(DelegateCaseExecution execution, org.camunda.bpm.dmn.engine.delegate.DmnDecisionTableEvaluationEvent evaluationEvent)
           
 HistoryEvent DmnHistoryEventProducer.createDecisionEvaluatedEvt(DelegateCaseExecution execution, org.camunda.bpm.dmn.engine.delegate.DmnDecisionTableEvaluationEvent decisionTableEvaluationEvent)
          Creates the history event fired when a decision is evaluated while execute a case instance.
 

Uses of DelegateCaseExecution in org.camunda.bpm.engine.impl.history.transformer
 

Methods in org.camunda.bpm.engine.impl.history.transformer with parameters of type DelegateCaseExecution
protected  HistoryEvent CaseInstanceUpdateListener.createHistoryEvent(DelegateCaseExecution caseExecution)
           
protected  HistoryEvent CaseInstanceCloseListener.createHistoryEvent(DelegateCaseExecution caseExecution)
           
protected  HistoryEvent CaseActivityInstanceCreateListener.createHistoryEvent(DelegateCaseExecution caseExecution)
           
protected  HistoryEvent CaseActivityInstanceEndListener.createHistoryEvent(DelegateCaseExecution caseExecution)
           
protected abstract  HistoryEvent HistoryCaseExecutionListener.createHistoryEvent(DelegateCaseExecution caseExecution)
           
protected  HistoryEvent CaseInstanceCreateListener.createHistoryEvent(DelegateCaseExecution caseExecution)
           
protected  HistoryEvent CaseActivityInstanceUpdateListener.createHistoryEvent(DelegateCaseExecution caseExecution)
           
 void HistoryCaseExecutionListener.notify(DelegateCaseExecution caseExecution)
           
 

Uses of DelegateCaseExecution in org.camunda.bpm.engine.impl.metrics.parser
 

Methods in org.camunda.bpm.engine.impl.metrics.parser with parameters of type DelegateCaseExecution
 void MetricsCaseExecutionListener.notify(DelegateCaseExecution caseExecution)
           
 

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

Methods in org.camunda.bpm.engine.impl.persistence.entity with parameters of type DelegateCaseExecution
 void TaskEntity.setCaseExecution(DelegateCaseExecution caseExecution)
           
 

Uses of DelegateCaseExecution in org.camunda.bpm.engine.impl.variable.listener
 

Fields in org.camunda.bpm.engine.impl.variable.listener declared as DelegateCaseExecution
protected  DelegateCaseExecution DelegateCaseVariableInstanceImpl.scopeExecution
           
protected  DelegateCaseExecution DelegateCaseVariableInstanceImpl.sourceExecution
           
 

Methods in org.camunda.bpm.engine.impl.variable.listener that return DelegateCaseExecution
 DelegateCaseExecution DelegateCaseVariableInstanceImpl.getScopeExecution()
          Currently not part of public interface.
 DelegateCaseExecution DelegateCaseVariableInstanceImpl.getSourceExecution()
           
 

Methods in org.camunda.bpm.engine.impl.variable.listener with parameters of type DelegateCaseExecution
 void DelegateCaseVariableInstanceImpl.setScopeExecution(DelegateCaseExecution scopeExecution)
           
 void DelegateCaseVariableInstanceImpl.setSourceExecution(DelegateCaseExecution sourceExecution)
           
 



Copyright © 2016 camunda services GmbH. All rights reserved.