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

Packages that use DelegateExecution
org.camunda.bpm.application.impl   
org.camunda.bpm.application.impl.event   
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 API implementation classes, which shouldn't directly be used by end-users. 
org.camunda.bpm.engine.impl.bpmn.behavior   
org.camunda.bpm.engine.impl.bpmn.delegate   
org.camunda.bpm.engine.impl.bpmn.listener   
org.camunda.bpm.engine.impl.cfg.multitenancy   
org.camunda.bpm.engine.impl.el   
org.camunda.bpm.engine.impl.form.handler   
org.camunda.bpm.engine.impl.form.validator   
org.camunda.bpm.engine.impl.history.parser   
org.camunda.bpm.engine.impl.history.producer   
org.camunda.bpm.engine.impl.metrics.parser   
org.camunda.bpm.engine.impl.persistence.entity   
org.camunda.bpm.engine.impl.pvm.delegate   
org.camunda.bpm.engine.impl.pvm.runtime   
org.camunda.bpm.engine.impl.scripting   
 

Uses of DelegateExecution in org.camunda.bpm.application.impl
 

Methods in org.camunda.bpm.application.impl with parameters of type DelegateExecution
 void ProcessApplicationLogger.noTargetProcessApplicationForExecution(DelegateExecution execution)
           
 

Uses of DelegateExecution in org.camunda.bpm.application.impl.event
 

Methods in org.camunda.bpm.application.impl.event with parameters of type DelegateExecution
 void ProcessApplicationEventListenerDelegate.notify(DelegateExecution execution)
           
protected  void ProcessApplicationEventListenerDelegate.notifyExecutionListener(DelegateExecution execution)
           
protected  void ProcessApplicationEventListenerDelegate.performNotification(DelegateExecution execution, Callable<Void> notification)
           
 

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

Methods in org.camunda.bpm.engine.delegate that return DelegateExecution
 DelegateExecution DelegateTask.getExecution()
          Returns the execution currently at the task.
 DelegateExecution DelegateExecution.getProcessInstance()
          Return the process instance execution for this execution.
 DelegateExecution DelegateExecution.getSuperExecution()
          In case this delegate execution is the process instance execution and this process instance was started by a call activity, this method returns the execution which executed the call activity in the super process instance.
 

Methods in org.camunda.bpm.engine.delegate with parameters of type DelegateExecution
 void JavaDelegate.execute(DelegateExecution execution)
           
 void ExecutionListener.notify(DelegateExecution execution)
           
 

Uses of DelegateExecution in org.camunda.bpm.engine.impl
 

Methods in org.camunda.bpm.engine.impl with parameters of type DelegateExecution
 boolean Condition.evaluate(DelegateExecution execution)
           
 

Uses of DelegateExecution in org.camunda.bpm.engine.impl.bpmn.behavior
 

Methods in org.camunda.bpm.engine.impl.bpmn.behavior with parameters of type DelegateExecution
 void ServiceTaskJavaDelegateActivityBehavior.execute(DelegateExecution execution)
           
protected  String ShellActivityBehavior.getStringFromField(Expression expression, DelegateExecution execution)
           
protected  String MailActivityBehavior.getStringFromField(Expression expression, DelegateExecution execution)
           
 void ServiceTaskJavaDelegateActivityBehavior.notify(DelegateExecution execution)
           
 

Uses of DelegateExecution in org.camunda.bpm.engine.impl.bpmn.delegate
 

Fields in org.camunda.bpm.engine.impl.bpmn.delegate declared as DelegateExecution
protected  DelegateExecution JavaDelegateInvocation.execution
           
protected  DelegateExecution ExecutionListenerInvocation.execution
           
 

Constructors in org.camunda.bpm.engine.impl.bpmn.delegate with parameters of type DelegateExecution
ExecutionListenerInvocation(ExecutionListener executionListenerInstance, DelegateExecution execution)
           
JavaDelegateInvocation(JavaDelegate delegateInstance, DelegateExecution execution)
           
 

Uses of DelegateExecution in org.camunda.bpm.engine.impl.bpmn.listener
 

Methods in org.camunda.bpm.engine.impl.bpmn.listener with parameters of type DelegateExecution
 void DelegateExpressionExecutionListener.notify(DelegateExecution execution)
           
 void ScriptExecutionListener.notify(DelegateExecution execution)
           
 void ExpressionExecutionListener.notify(DelegateExecution execution)
           
 void ClassDelegateExecutionListener.notify(DelegateExecution execution)
           
 

Uses of DelegateExecution in org.camunda.bpm.engine.impl.cfg.multitenancy
 

Fields in org.camunda.bpm.engine.impl.cfg.multitenancy declared as DelegateExecution
protected  DelegateExecution TenantIdProviderHistoricDecisionInstanceContext.execution
           
protected  DelegateExecution TenantIdProviderProcessInstanceContext.superExecution
           
protected  DelegateExecution TenantIdProviderCaseInstanceContext.superExecution
           
 

Methods in org.camunda.bpm.engine.impl.cfg.multitenancy that return DelegateExecution
 DelegateExecution TenantIdProviderHistoricDecisionInstanceContext.getExecution()
           
 DelegateExecution TenantIdProviderProcessInstanceContext.getSuperExecution()
           
 DelegateExecution TenantIdProviderCaseInstanceContext.getSuperExecution()
           
 

Constructors in org.camunda.bpm.engine.impl.cfg.multitenancy with parameters of type DelegateExecution
TenantIdProviderCaseInstanceContext(CaseDefinition caseDefinition, org.camunda.bpm.engine.variable.VariableMap variables, DelegateExecution superExecution)
           
TenantIdProviderHistoricDecisionInstanceContext(DecisionDefinition decisionDefinition, DelegateExecution execution)
           
TenantIdProviderProcessInstanceContext(ProcessDefinition processDefinition, org.camunda.bpm.engine.variable.VariableMap variables, DelegateExecution superExecution)
           
 

Uses of DelegateExecution in org.camunda.bpm.engine.impl.el
 

Methods in org.camunda.bpm.engine.impl.el with parameters of type DelegateExecution
 boolean UelExpressionCondition.evaluate(DelegateExecution execution)
           
 

Uses of DelegateExecution in org.camunda.bpm.engine.impl.form.handler
 

Methods in org.camunda.bpm.engine.impl.form.handler that return DelegateExecution
 DelegateExecution DefaultFormFieldValidatorContext.getExecution()
           
 

Uses of DelegateExecution in org.camunda.bpm.engine.impl.form.validator
 

Methods in org.camunda.bpm.engine.impl.form.validator that return DelegateExecution
 DelegateExecution FormFieldValidatorContext.getExecution()
          Deprecated. 
 

Methods in org.camunda.bpm.engine.impl.form.validator with parameters of type DelegateExecution
protected  boolean DelegateFormFieldValidator.shouldPerformPaContextSwitch(DelegateExecution execution)
           
 

Uses of DelegateExecution in org.camunda.bpm.engine.impl.history.parser
 

Methods in org.camunda.bpm.engine.impl.history.parser with parameters of type DelegateExecution
protected  HistoryEvent ProcessInstanceStartListener.createHistoryEvent(DelegateExecution execution)
           
protected  HistoryEvent ProcessInstanceEndListener.createHistoryEvent(DelegateExecution execution)
           
protected abstract  HistoryEvent HistoryExecutionListener.createHistoryEvent(DelegateExecution execution)
           
protected  HistoryEvent ActivityInstanceStartListener.createHistoryEvent(DelegateExecution execution)
           
protected  HistoryEvent ActivityInstanceEndListener.createHistoryEvent(DelegateExecution execution)
           
 void HistoryExecutionListener.notify(DelegateExecution execution)
           
 

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

Methods in org.camunda.bpm.engine.impl.history.producer that return DelegateExecution
protected  DelegateExecution DefaultDmnHistoryEventProducer.getExecution(HistoricDecisionInstanceEntity event)
           
 

Methods in org.camunda.bpm.engine.impl.history.producer with parameters of type DelegateExecution
 HistoryEvent HistoryEventProducer.createActivityInstanceEndEvt(DelegateExecution execution)
          Creates the history event fired when an activity instances is ended.
 HistoryEvent DefaultHistoryEventProducer.createActivityInstanceEndEvt(DelegateExecution execution)
           
 HistoryEvent HistoryEventProducer.createActivityInstanceStartEvt(DelegateExecution execution)
          Creates the history event fired when an activity instances is started.
 HistoryEvent DefaultHistoryEventProducer.createActivityInstanceStartEvt(DelegateExecution execution)
           
 HistoryEvent HistoryEventProducer.createActivityInstanceUpdateEvt(DelegateExecution execution, DelegateTask task)
          Creates the history event fired when an activity instances is updated.
 HistoryEvent DefaultHistoryEventProducer.createActivityInstanceUpdateEvt(DelegateExecution execution, DelegateTask task)
           
 HistoryEvent DefaultDmnHistoryEventProducer.createDecisionEvaluatedEvt(DelegateExecution execution, org.camunda.bpm.dmn.engine.delegate.DmnDecisionTableEvaluationEvent evaluationEvent)
           
 HistoryEvent DmnHistoryEventProducer.createDecisionEvaluatedEvt(DelegateExecution execution, org.camunda.bpm.dmn.engine.delegate.DmnDecisionTableEvaluationEvent decisionTableEvaluationEvent)
          Creates the history event fired when a decision is evaluated while execute a process instance.
 HistoryEvent HistoryEventProducer.createProcessInstanceEndEvt(DelegateExecution execution)
          Creates the history event fired when a process instances is ended.
 HistoryEvent DefaultHistoryEventProducer.createProcessInstanceEndEvt(DelegateExecution execution)
           
 HistoryEvent HistoryEventProducer.createProcessInstanceStartEvt(DelegateExecution execution)
          Creates the history event fired when an process instances is created.
 HistoryEvent DefaultHistoryEventProducer.createProcessInstanceStartEvt(DelegateExecution execution)
           
 HistoryEvent HistoryEventProducer.createProcessInstanceUpdateEvt(DelegateExecution execution)
          Creates the history event fired when a process instance is updated.
 HistoryEvent DefaultHistoryEventProducer.createProcessInstanceUpdateEvt(DelegateExecution execution)
           
 

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

Methods in org.camunda.bpm.engine.impl.metrics.parser with parameters of type DelegateExecution
 void MetricsExecutionListener.notify(DelegateExecution execution)
           
 

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

Classes in org.camunda.bpm.engine.impl.persistence.entity that implement DelegateExecution
 class ExecutionEntity
           
 

Uses of DelegateExecution in org.camunda.bpm.engine.impl.pvm.delegate
 

Subinterfaces of DelegateExecution in org.camunda.bpm.engine.impl.pvm.delegate
 interface ActivityExecution
           
 

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

Classes in org.camunda.bpm.engine.impl.pvm.runtime that implement DelegateExecution
 class ExecutionImpl
           
 class PvmExecutionImpl
           
 

Uses of DelegateExecution in org.camunda.bpm.engine.impl.scripting
 

Methods in org.camunda.bpm.engine.impl.scripting with parameters of type DelegateExecution
 boolean ScriptCondition.evaluate(DelegateExecution execution)
           
 



Copyright © 2016 camunda services GmbH. All rights reserved.