Uses of Interface
org.camunda.bpm.engine.delegate.BaseDelegateExecution
-
Packages that use BaseDelegateExecution Package Description org.camunda.bpm.application 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 withJavaDelegates.org.camunda.bpm.engine.impl.cmmn.entity.runtime org.camunda.bpm.engine.impl.cmmn.execution org.camunda.bpm.engine.impl.core.delegate org.camunda.bpm.engine.impl.core.instance org.camunda.bpm.engine.impl.core.model org.camunda.bpm.engine.impl.core.operation org.camunda.bpm.engine.impl.delegate org.camunda.bpm.engine.impl.el org.camunda.bpm.engine.impl.persistence.entity org.camunda.bpm.engine.impl.pvm.delegate org.camunda.bpm.engine.impl.pvm.process org.camunda.bpm.engine.impl.pvm.runtime org.camunda.bpm.engine.impl.task.delegate org.camunda.bpm.engine.impl.variable.listener -
-
Uses of BaseDelegateExecution in org.camunda.bpm.application
Fields in org.camunda.bpm.application declared as BaseDelegateExecution Modifier and Type Field Description protected BaseDelegateExecutionInvocationContext. executionMethods in org.camunda.bpm.application that return BaseDelegateExecution Modifier and Type Method Description BaseDelegateExecutionInvocationContext. getExecution()Constructors in org.camunda.bpm.application with parameters of type BaseDelegateExecution Constructor Description InvocationContext(BaseDelegateExecution execution) -
Uses of BaseDelegateExecution in org.camunda.bpm.engine.delegate
Classes in org.camunda.bpm.engine.delegate with type parameters of type BaseDelegateExecution Modifier and Type Interface Description interfaceDelegateListener<T extends BaseDelegateExecution>interfaceDelegateVariableInstance<T extends BaseDelegateExecution>Subinterfaces of BaseDelegateExecution in org.camunda.bpm.engine.delegate Modifier and Type Interface Description interfaceDelegateCaseExecutioninterfaceDelegateExecutionExecution used inJavaDelegates andExecutionListeners. -
Uses of BaseDelegateExecution in org.camunda.bpm.engine.impl.cmmn.entity.runtime
Classes in org.camunda.bpm.engine.impl.cmmn.entity.runtime that implement BaseDelegateExecution Modifier and Type Class Description classCaseExecutionEntity -
Uses of BaseDelegateExecution in org.camunda.bpm.engine.impl.cmmn.execution
Subinterfaces of BaseDelegateExecution in org.camunda.bpm.engine.impl.cmmn.execution Modifier and Type Interface Description interfaceCmmnActivityExecutioninterfaceCmmnCaseInstanceClasses in org.camunda.bpm.engine.impl.cmmn.execution that implement BaseDelegateExecution Modifier and Type Class Description classCaseExecutionImplclassCmmnExecution -
Uses of BaseDelegateExecution in org.camunda.bpm.engine.impl.core.delegate
Classes in org.camunda.bpm.engine.impl.core.delegate with type parameters of type BaseDelegateExecution Modifier and Type Interface Description interfaceCoreActivityBehavior<T extends BaseDelegateExecution> -
Uses of BaseDelegateExecution in org.camunda.bpm.engine.impl.core.instance
Classes in org.camunda.bpm.engine.impl.core.instance that implement BaseDelegateExecution Modifier and Type Class Description classCoreExecutionDefines the base API for the execution of an activity. -
Uses of BaseDelegateExecution in org.camunda.bpm.engine.impl.core.model
Fields in org.camunda.bpm.engine.impl.core.model with type parameters of type BaseDelegateExecution Modifier and Type Field Description protected java.util.Map<java.lang.String,java.util.List<DelegateListener<? extends BaseDelegateExecution>>>CoreModelElement. builtInListenerscontains built-in listenersprotected java.util.Map<java.lang.String,java.util.List<DelegateListener<? extends BaseDelegateExecution>>>CoreModelElement. listenerscontains all listeners (built-in + user-provided)Methods in org.camunda.bpm.engine.impl.core.model that return types with arguments of type BaseDelegateExecution Modifier and Type Method Description abstract CoreActivityBehavior<? extends BaseDelegateExecution>CoreActivity. getActivityBehavior()java.util.Map<java.lang.String,java.util.List<DelegateListener<? extends BaseDelegateExecution>>>CoreModelElement. getBuiltInListeners()java.util.List<DelegateListener<? extends BaseDelegateExecution>>CoreModelElement. getBuiltInListeners(java.lang.String eventName)java.util.Map<java.lang.String,java.util.List<DelegateListener<? extends BaseDelegateExecution>>>CoreModelElement. getListeners()java.util.List<DelegateListener<? extends BaseDelegateExecution>>CoreModelElement. getListeners(java.lang.String eventName)Method parameters in org.camunda.bpm.engine.impl.core.model with type arguments of type BaseDelegateExecution Modifier and Type Method Description voidCoreModelElement. addBuiltInListener(java.lang.String eventName, DelegateListener<? extends BaseDelegateExecution> listener)voidCoreModelElement. addBuiltInListener(java.lang.String eventName, DelegateListener<? extends BaseDelegateExecution> listener, int index)voidCoreModelElement. addListener(java.lang.String eventName, DelegateListener<? extends BaseDelegateExecution> listener)voidCoreModelElement. addListener(java.lang.String eventName, DelegateListener<? extends BaseDelegateExecution> listener, int index) -
Uses of BaseDelegateExecution in org.camunda.bpm.engine.impl.core.operation
Methods in org.camunda.bpm.engine.impl.core.operation that return types with arguments of type BaseDelegateExecution Modifier and Type Method Description protected java.util.List<DelegateListener<? extends BaseDelegateExecution>>AbstractEventAtomicOperation. getBuiltinListeners(CoreModelElement scope)protected java.util.List<DelegateListener<? extends BaseDelegateExecution>>AbstractEventAtomicOperation. getListeners(CoreModelElement scope, T execution) -
Uses of BaseDelegateExecution in org.camunda.bpm.engine.impl.delegate
Fields in org.camunda.bpm.engine.impl.delegate declared as BaseDelegateExecution Modifier and Type Field Description protected BaseDelegateExecutionDelegateInvocation. contextExecutionMethods in org.camunda.bpm.engine.impl.delegate that return BaseDelegateExecution Modifier and Type Method Description BaseDelegateExecutionDelegateInvocation. getContextExecution()returns the execution in which context this delegate is invoked.Methods in org.camunda.bpm.engine.impl.delegate with parameters of type BaseDelegateExecution Modifier and Type Method Description protected booleanDefaultDelegateInterceptor. isCurrentContextExecution(BaseDelegateExecution execution)protected booleanDefaultDelegateInterceptor. setExecutionContext(BaseDelegateExecution execution)Constructors in org.camunda.bpm.engine.impl.delegate with parameters of type BaseDelegateExecution Constructor Description DelegateInvocation(BaseDelegateExecution contextExecution, ResourceDefinitionEntity contextResource)Provide a context execution or resource definition in which context the invocation should be performed.ExpressionGetInvocation(ValueExpression valueExpression, ELContext elContext, BaseDelegateExecution contextExecution)ExpressionSetInvocation(ValueExpression valueExpression, ELContext elContext, java.lang.Object value, BaseDelegateExecution contextExecution)ScriptInvocation(ExecutableScript script, VariableScope scope, BaseDelegateExecution contextExecution) -
Uses of BaseDelegateExecution in org.camunda.bpm.engine.impl.el
Methods in org.camunda.bpm.engine.impl.el with parameters of type BaseDelegateExecution Modifier and Type Method Description java.lang.ObjectExpression. getValue(VariableScope variableScope, BaseDelegateExecution contextExecution)java.lang.ObjectFixedValue. getValue(VariableScope variableScope, BaseDelegateExecution contextExecution)java.lang.ObjectJuelExpression. getValue(VariableScope variableScope, BaseDelegateExecution contextExecution)voidExpression. setValue(java.lang.Object value, VariableScope variableScope, BaseDelegateExecution contextExecution)voidJuelExpression. setValue(java.lang.Object value, VariableScope variableScope, BaseDelegateExecution contextExecution) -
Uses of BaseDelegateExecution in org.camunda.bpm.engine.impl.persistence.entity
Classes in org.camunda.bpm.engine.impl.persistence.entity that implement BaseDelegateExecution Modifier and Type Class Description classExecutionEntity -
Uses of BaseDelegateExecution in org.camunda.bpm.engine.impl.pvm.delegate
Subinterfaces of BaseDelegateExecution in org.camunda.bpm.engine.impl.pvm.delegate Modifier and Type Interface Description interfaceActivityExecution -
Uses of BaseDelegateExecution in org.camunda.bpm.engine.impl.pvm.process
Methods in org.camunda.bpm.engine.impl.pvm.process that return types with arguments of type BaseDelegateExecution Modifier and Type Method Description CoreActivityBehavior<? extends BaseDelegateExecution>ProcessDefinitionImpl. getActivityBehavior() -
Uses of BaseDelegateExecution in org.camunda.bpm.engine.impl.pvm.runtime
Classes in org.camunda.bpm.engine.impl.pvm.runtime that implement BaseDelegateExecution Modifier and Type Class Description classExecutionImplclassPvmExecutionImpl -
Uses of BaseDelegateExecution in org.camunda.bpm.engine.impl.task.delegate
Constructors in org.camunda.bpm.engine.impl.task.delegate with parameters of type BaseDelegateExecution Constructor Description TaskListenerInvocation(TaskListener taskListenerInstance, DelegateTask delegateTask, BaseDelegateExecution contextExecution) -
Uses of BaseDelegateExecution in org.camunda.bpm.engine.impl.variable.listener
Constructors in org.camunda.bpm.engine.impl.variable.listener with parameters of type BaseDelegateExecution Constructor Description CaseVariableListenerInvocation(CaseVariableListener variableListenerInstance, DelegateCaseVariableInstance variableInstance, BaseDelegateExecution contextExecution)
-