org.activiti.engine.delegate
Interface VariableScope

All Known Subinterfaces:
DelegateExecution, DelegateTask

public interface VariableScope

Author:
Tom Baeyens

Method Summary
 void createVariableLocal(String variableName, Object value)
           
 void createVariablesLocal(Map<String,? extends Object> variables)
           
 Object getVariable(String variableName)
           
 Object getVariableLocal(Object variableName)
           
 Set<String> getVariableNames()
           
 Set<String> getVariableNamesLocal()
           
 Map<String,Object> getVariables()
           
 Map<String,Object> getVariablesLocal()
           
 boolean hasVariable(String variableName)
           
 boolean hasVariableLocal(String variableName)
           
 boolean hasVariables()
           
 boolean hasVariablesLocal()
           
 void removeVariable(String variableName)
           
 void removeVariableLocal(String variableName)
           
 void removeVariables()
           
 void removeVariablesLocal()
           
 void setVariable(String variableName, Object value)
           
 Object setVariableLocal(String variableName, Object value)
           
 void setVariables(Map<String,? extends Object> variables)
           
 void setVariablesLocal(Map<String,? extends Object> variables)
           
 

Method Detail

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.