Package io.camunda.migrator.interceptor
Class VariableInvocation
java.lang.Object
io.camunda.migrator.interceptor.VariableInvocation
Represents an invocation of a variable within a process instance.
-
Field Summary
FieldsModifier and TypeFieldDescriptionprotected org.camunda.bpm.engine.impl.persistence.entity.VariableInstanceEntityprotected MigrationVariableDto -
Constructor Summary
ConstructorsConstructorDescriptionVariableInvocation(org.camunda.bpm.engine.impl.persistence.entity.VariableInstanceEntity variable) -
Method Summary
Modifier and TypeMethodDescriptionorg.camunda.bpm.engine.impl.persistence.entity.VariableInstanceEntityReturns the variable instance entity associated with this invocation.Returns the DTO representation of the variable.voidsetVariableValue(Object value) Sets the value of the variable in the migration context.
-
Field Details
-
c7Variable
protected org.camunda.bpm.engine.impl.persistence.entity.VariableInstanceEntity c7Variable -
migrationVariable
-
-
Constructor Details
-
VariableInvocation
public VariableInvocation(org.camunda.bpm.engine.impl.persistence.entity.VariableInstanceEntity variable)
-
-
Method Details
-
getC7Variable
public org.camunda.bpm.engine.impl.persistence.entity.VariableInstanceEntity getC7Variable()Returns the variable instance entity associated with this invocation.- Returns:
- the
VariableInstanceEntity
-
getMigrationVariable
Returns the DTO representation of the variable.- Returns:
- the
MigrationVariableDto
-
setVariableValue
Sets the value of the variable in the migration context.- Parameters:
value- the new value to set
-