org.activiti.engine.delegate
Interface VariableScope
- All Known Subinterfaces:
- DelegateExecution, DelegateTask
public interface VariableScope
- Author:
- Tom Baeyens
getVariables
Map<String,Object> getVariables()
getVariablesLocal
Map<String,Object> getVariablesLocal()
getVariable
Object getVariable(String variableName)
getVariableLocal
Object getVariableLocal(Object variableName)
getVariableNames
Set<String> getVariableNames()
getVariableNamesLocal
Set<String> getVariableNamesLocal()
setVariable
void setVariable(String variableName,
Object value)
setVariableLocal
Object setVariableLocal(String variableName,
Object value)
setVariables
void setVariables(Map<String,? extends Object> variables)
setVariablesLocal
void setVariablesLocal(Map<String,? extends Object> variables)
hasVariables
boolean hasVariables()
hasVariablesLocal
boolean hasVariablesLocal()
hasVariable
boolean hasVariable(String variableName)
hasVariableLocal
boolean hasVariableLocal(String variableName)
createVariableLocal
void createVariableLocal(String variableName,
Object value)
createVariablesLocal
void createVariablesLocal(Map<String,? extends Object> variables)
removeVariable
void removeVariable(String variableName)
removeVariableLocal
void removeVariableLocal(String variableName)
removeVariables
void removeVariables()
removeVariablesLocal
void removeVariablesLocal()
Copyright © 2012 Alfresco. All Rights Reserved.