| Modifier and Type | Method and Description |
|---|---|
void |
Step.perform(StepExecutionContext context)
Perform changes to the process instance.
|
default void |
Step.prepare(StepExecutionContext context)
Prepare this step before changes are applied.
|
| Modifier and Type | Method and Description |
|---|---|
void |
ModelStep.perform(StepExecutionContext context) |
| Modifier and Type | Method and Description |
|---|---|
void |
VariableDeleteStep.perform(StepExecutionContext context) |
void |
VariableStep.perform(StepExecutionContext context) |
void |
VariableStep.prepare(StepExecutionContext context) |
| Modifier and Type | Method and Description |
|---|---|
protected org.camunda.bpm.engine.RuntimeService |
AbstractReadWriteStrategy.getRuntimeService(StepExecutionContext stepExecutionContext) |
protected Optional<String> |
AbstractReadWriteStrategy.getTaskId(StepExecutionContext context,
String taskDefinitionKey) |
protected org.camunda.bpm.engine.TaskService |
AbstractReadWriteStrategy.getTaskService(StepExecutionContext stepExecutionContext) |
Optional<org.camunda.bpm.engine.variable.value.TypedValue> |
ReadConstantValue.read(StepExecutionContext stepExecutionContext,
String variableName) |
Optional<org.camunda.bpm.engine.variable.value.TypedValue> |
ReadTaskVariable.read(StepExecutionContext stepExecutionContext,
String variableName) |
Optional<org.camunda.bpm.engine.variable.value.TypedValue> |
ReadProcessVariable.read(StepExecutionContext stepExecutionContext,
String variableName) |
Optional<org.camunda.bpm.engine.variable.value.TypedValue> |
ReadStrategy.read(StepExecutionContext stepExecutionContext,
String variableName)
Returns the
TypedValue of the variable variableName. |
void |
DeleteStrategy.remove(StepExecutionContext stepExecutionContext,
String variableName)
Removes a variable.
|
void |
ReadConstantValue.remove(StepExecutionContext stepExecutionContext,
String variableName) |
void |
ReadTaskVariable.remove(StepExecutionContext stepExecutionContext,
String variableName) |
void |
ReadProcessVariable.remove(StepExecutionContext stepExecutionContext,
String variableName) |
void |
WriteStrategy.write(StepExecutionContext stepExecutionContext,
String variableName,
org.camunda.bpm.engine.variable.value.TypedValue value)
Writes a variable named
variableName with value value. |
void |
WriteProcessVariable.write(StepExecutionContext stepExecutionContext,
String variableName,
org.camunda.bpm.engine.variable.value.TypedValue value) |
void |
WriteTaskVariable.write(StepExecutionContext stepExecutionContext,
String variableName,
org.camunda.bpm.engine.variable.value.TypedValue value) |
Copyright © 2017 camunda services GmbH. All rights reserved.