Class CallableElementParameter
- java.lang.Object
-
- org.camunda.bpm.engine.impl.core.model.CallableElementParameter
-
public class CallableElementParameter extends java.lang.Object
- Author:
- Roman Smirnov
-
-
Field Summary
Fields Modifier and Type Field Description protected boolean
allVariables
protected boolean
readLocal
protected ParameterValueProvider
sourceValueProvider
protected java.lang.String
target
-
Constructor Summary
Constructors Constructor Description CallableElementParameter()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
applyTo(VariableScope variableScope, VariableMap variables)
java.lang.Object
getSource(VariableScope variableScope)
ParameterValueProvider
getSourceValueProvider()
java.lang.String
getTarget()
boolean
isAllVariables()
boolean
isReadLocal()
void
setAllVariables(boolean allVariables)
void
setReadLocal(boolean readLocal)
void
setSourceValueProvider(ParameterValueProvider source)
void
setTarget(java.lang.String target)
-
-
-
Field Detail
-
sourceValueProvider
protected ParameterValueProvider sourceValueProvider
-
target
protected java.lang.String target
-
allVariables
protected boolean allVariables
-
readLocal
protected boolean readLocal
-
-
Method Detail
-
getSource
public java.lang.Object getSource(VariableScope variableScope)
-
applyTo
public void applyTo(VariableScope variableScope, VariableMap variables)
-
getSourceValueProvider
public ParameterValueProvider getSourceValueProvider()
-
setSourceValueProvider
public void setSourceValueProvider(ParameterValueProvider source)
-
getTarget
public java.lang.String getTarget()
-
setTarget
public void setTarget(java.lang.String target)
-
isAllVariables
public boolean isAllVariables()
-
setAllVariables
public void setAllVariables(boolean allVariables)
-
setReadLocal
public void setReadLocal(boolean readLocal)
-
isReadLocal
public boolean isReadLocal()
-
-