Interface VariableScope
- All Superinterfaces:
org.flowable.common.engine.api.variable.VariableContainer
public interface VariableScope
extends org.flowable.common.engine.api.variable.VariableContainer
Interface for class that acts as a scope for variables: i.e. the implementation can be used to set and get variables.
Variables are typically stored on the 'highest parent'. For executions, this means that when called on an execution
the variable will be stored on the process instance execution. Variables can be stored on the actual scope itself though,
by calling the xxLocal methods.
- Author:
- Tom Baeyens, Joram Barrez
-
Method Summary
Modifier and TypeMethodDescriptionstatic VariableScope
empty()
getTransientVariable
(String variableName) Similar togetVariable(String)
, including the searching via the parent scopes, but for transient variables only.getTransientVariableLocal
(String variableName) Similar togetVariableLocal(String)
, but for a transient variable.Similar togetVariables()
, but for transient variables only.Similar togetVariableLocal(String)
, but for transient variables only.getVariable
(String variableName) Returns the variable value for one specific variable.getVariable
(String variableName, boolean fetchAllVariables) Similar togetVariable(String)
, but has an extra flag that indicates whether or not all variables need to be fetched when getting one variable.<T> T
getVariable
(String variableName, Class<T> variableClass) Typed version of thegetVariable(String)
method.getVariableInstance
(String variableName) Similar togetVariable(String)
, but returns aVariableInstance
instance, which contains more information than just the value.getVariableInstance
(String variableName, boolean fetchAllVariables) Similar togetVariable(String, boolean)
, but returns an instance ofVariableInstance
, which has some additional information beyond the value.getVariableInstanceLocal
(String variableName) Similar togetVariableLocal(String)
, but returns an instance ofVariableInstance
, which has some additional information beyond the value.getVariableInstanceLocal
(String variableName, boolean fetchAllVariables) Similar togetVariableLocal(String, boolean)
, but returns an instance ofVariableInstance
, which has some additional information beyond the value.Returns all variables, as instances of theVariableInstance
interface, which gives more information than only the value (type, execution id, etc.)getVariableInstances
(Collection<String> variableNames) Similar togetVariableInstances()
, but limited to only the variables with the provided names.getVariableInstances
(Collection<String> variableNames, boolean fetchAllVariables) Similar togetVariables(Collection, boolean)
but returns the variables as instances of theVariableInstance
interface, which gives more information than only the value (type, execution id, etc.)Returns the variables local to this scope as instances of theVariableInstance
interface, which provided additional information about the variable.getVariableInstancesLocal
(Collection<String> variableNames) Similar togetVariableInstances(Collection)
, but only for variables local to this scope.getVariableInstancesLocal
(Collection<String> variableNames, boolean fetchAllVariables) Similar togetVariableInstances(Collection, boolean)
, but only for variables local to this scope.getVariableLocal
(String variableName) Returns the value for the specific variable and only checks this scope and not any parent scope.getVariableLocal
(String variableName, boolean fetchAllVariables) Similar togetVariableLocal(String)
, but has an extra flag that indicates whether or not all variables need to be fetched when getting one variable.<T> T
getVariableLocal
(String variableName, Class<T> variableClass) Typed version of thegetVariableLocal(String)
method.Returns all the names of the variables for this scope and all parent scopes.Returns all the names of the variables for this scope (no parent scopes).Returns all variables.getVariables
(Collection<String> variableNames) Similar togetVariables()
, but limited to only the variables with the provided names.getVariables
(Collection<String> variableNames, boolean fetchAllVariables) Similar togetVariables(Collection)
, but with a flag that indicates that all variables should be fetched when fetching the specific variables.Returns the variable local to this scope only.getVariablesLocal
(Collection<String> variableNames) Similar togetVariables(Collection)
, but only for variables local to this scope.getVariablesLocal
(Collection<String> variableNames, boolean fetchAllVariables) Similar togetVariables(Collection, boolean)
, but only for variables local to this scope.boolean
hasVariable
(String variableName) Returns whether this scope or any parent scope has a specific variable.boolean
hasVariableLocal
(String variableName) Returns whether this scope has a specific variable.boolean
Returns whether this scope or any parent scope has variables.boolean
Returns whether this scope has variables.void
removeTransientVariable
(String variableName) Removes a specific transient variable.void
removeTransientVariableLocal
(String variableName) Removes a specific transient variable (also searching parent scopes).void
Remove all transient variable of this scope and its parent scopes.void
Removes all local transient variables.void
removeVariable
(String variableName) Removes the variable and creates a new HistoricVariableUpdate.void
removeVariableLocal
(String variableName) Removes the local variable and creates a new HistoricVariableUpdate.void
Removes the (local) variables and creates a new HistoricVariableUpdate for each of them.void
removeVariables
(Collection<String> variableNames) Removes the variables and creates a new HistoricVariableUpdate for each of them.void
Removes the (local) variables and creates a new HistoricVariableUpdate for each of them.void
removeVariablesLocal
(Collection<String> variableNames) Removes the local variables and creates a new HistoricVariableUpdate for each of them.void
setTransientVariable
(String variableName, Object variableValue) Similar tosetVariable(String, Object)
, but the variable is transient: - no history is kept for the variable - the variable is only available until a waitstate is reached in the process - transient variables 'shadow' persistent variable (when getVariable('abc') where 'abc' is both persistent and transient, the transient value is returned.void
setTransientVariableLocal
(String variableName, Object variableValue) Similar tosetVariableLocal(String, Object)
, but for a transient variable.void
setTransientVariables
(Map<String, Object> transientVariables) Similar tosetVariables(Map)
, but for transient variables.void
setTransientVariablesLocal
(Map<String, Object> transientVariables) Similar tosetVariablesLocal(Map)
, but for transient variables.void
setVariable
(String variableName, Object value) Sets the variable with the provided name to the provided value.void
setVariable
(String variableName, Object value, boolean fetchAllVariables) Similar tosetVariable(String, Object)
, but with an extra flag to indicate whether all variables should be fetched while doing this or not.setVariableLocal
(String variableName, Object value) Similar tosetVariable(String, Object)
, but the variable is set to this scope specifically.setVariableLocal
(String variableName, Object value, boolean fetchAllVariables) Similar tosetVariableLocal(String, Object)
, but with an extra flag to indicate whether all variables should be fetched while doing this or not.void
setVariables
(Map<String, ? extends Object> variables) Sets the provided variables to the variable scope.void
setVariablesLocal
(Map<String, ? extends Object> variables) Similar tosetVariables(Map)
, but the variable are set on this scope specifically.Methods inherited from interface org.flowable.common.engine.api.variable.VariableContainer
getTenantId
-
Method Details
-
empty
- Returns:
- an empty (null object) variable scope.
-
getVariables
Returns all variables. This will include all variables of parent scopes too. -
getVariableInstances
Map<String,VariableInstance> getVariableInstances()Returns all variables, as instances of theVariableInstance
interface, which gives more information than only the value (type, execution id, etc.) -
getVariables
Similar togetVariables()
, but limited to only the variables with the provided names. -
getVariableInstances
Similar togetVariableInstances()
, but limited to only the variables with the provided names. -
getVariables
Similar togetVariables(Collection)
, but with a flag that indicates that all variables should be fetched when fetching the specific variables. If set to false, only the specific variables will be fetched. Depending on the use case, this can be better for performance, as it avoids fetching and processing the other variables. However, if the other variables are needed further on, getting them in one go is probably better (and the variables are cached during one Command execution). -
getVariableInstances
Map<String,VariableInstance> getVariableInstances(Collection<String> variableNames, boolean fetchAllVariables) Similar togetVariables(Collection, boolean)
but returns the variables as instances of theVariableInstance
interface, which gives more information than only the value (type, execution id, etc.) -
getVariablesLocal
Returns the variable local to this scope only. So, in contrary togetVariables()
, the variables from the parent scope won't be returned. -
getVariableInstancesLocal
Map<String,VariableInstance> getVariableInstancesLocal()Returns the variables local to this scope as instances of theVariableInstance
interface, which provided additional information about the variable. -
getVariablesLocal
Similar togetVariables(Collection)
, but only for variables local to this scope. -
getVariableInstancesLocal
Similar togetVariableInstances(Collection)
, but only for variables local to this scope. -
getVariablesLocal
Similar togetVariables(Collection, boolean)
, but only for variables local to this scope. -
getVariableInstancesLocal
Map<String,VariableInstance> getVariableInstancesLocal(Collection<String> variableNames, boolean fetchAllVariables) Similar togetVariableInstances(Collection, boolean)
, but only for variables local to this scope. -
getVariable
Returns the variable value for one specific variable. Will look in parent scopes when the variable does not exist on this particular scope.- Specified by:
getVariable
in interfaceorg.flowable.common.engine.api.variable.VariableContainer
-
getVariableInstance
Similar togetVariable(String)
, but returns aVariableInstance
instance, which contains more information than just the value. -
getVariable
Similar togetVariable(String)
, but has an extra flag that indicates whether or not all variables need to be fetched when getting one variable. By default true (for backwards compatibility reasons), which means that callinggetVariable(String)
will fetch all variables, of the current scope and all parent scopes. Setting this flag to false can thus be better for performance. However, variables are cached, and if other variables are used later on, setting this true might actually be better for performance. -
getVariableInstance
Similar togetVariable(String, boolean)
, but returns an instance ofVariableInstance
, which has some additional information beyond the value. -
getVariableLocal
Returns the value for the specific variable and only checks this scope and not any parent scope. -
getVariableInstanceLocal
Similar togetVariableLocal(String)
, but returns an instance ofVariableInstance
, which has some additional information beyond the value. -
getVariableLocal
Similar togetVariableLocal(String)
, but has an extra flag that indicates whether or not all variables need to be fetched when getting one variable. By default true (for backwards compatibility reasons), which means that callinggetVariableLocal(String)
will fetch all variables, of the current scope. Setting this flag to false can thus be better for performance. However, variables are cached, and if other variables are used later on, setting this true might actually be better for performance. -
getVariableInstanceLocal
Similar togetVariableLocal(String, boolean)
, but returns an instance ofVariableInstance
, which has some additional information beyond the value. -
getVariable
Typed version of thegetVariable(String)
method. -
getVariableLocal
Typed version of thegetVariableLocal(String)
method. -
getVariableNames
Returns all the names of the variables for this scope and all parent scopes. -
getVariableNamesLocal
Returns all the names of the variables for this scope (no parent scopes). -
setVariable
Sets the variable with the provided name to the provided value. In the case when variable name is an expression which is resolved by expression manager, the value is set in the object resolved from the expression.A variable is set according to the following algorithm:
- If variable name is an expression, resolve expression and set the value on the resolved object.
- If this scope already contains a variable by the provided name as a local variable, its value is overwritten to the provided value.
- If this scope does not contain a variable by the provided name as a local variable, the variable is set to this scope's parent scope, if there is one. If there is no parent scope (meaning this scope is the root scope of the hierarchy it belongs to), this scope is used. This applies recursively up the parent scope chain until, if no scope contains a local variable by the provided name, ultimately the root scope is reached and the variable value is set on that scope.
- Specified by:
setVariable
in interfaceorg.flowable.common.engine.api.variable.VariableContainer
- Parameters:
variableName
- the name of the variable to be setvalue
- the value of the variable to be set
-
setVariable
Similar tosetVariable(String, Object)
, but with an extra flag to indicate whether all variables should be fetched while doing this or not. Variable name expression is not resolved. The variable will be put on the highest possible scope. For an execution this is the process instance execution. If this is not wanted, use thesetVariableLocal(String, Object)
method instead. The default (e.g. when callingsetVariable(String, Object)
), is true, for backwards compatibility reasons. However, in some use cases, it might make sense not to fetch any other variables when setting one variable (for example when doing nothing more than just setting one variable). -
setVariableLocal
Similar tosetVariable(String, Object)
, but the variable is set to this scope specifically. Variable name is handled as a variable name string without resolving an expression. -
setVariableLocal
Similar tosetVariableLocal(String, Object)
, but with an extra flag to indicate whether all variables should be fetched while doing this or not. -
setVariables
Sets the provided variables to the variable scope.Variables are set according algorithm for
setVariable(String, Object)
, applied separately to each variable.- Parameters:
variables
- a map of keys and values for the variables to be set
-
setVariablesLocal
Similar tosetVariables(Map)
, but the variable are set on this scope specifically. -
hasVariables
boolean hasVariables()Returns whether this scope or any parent scope has variables. -
hasVariablesLocal
boolean hasVariablesLocal()Returns whether this scope has variables. -
hasVariable
Returns whether this scope or any parent scope has a specific variable.- Specified by:
hasVariable
in interfaceorg.flowable.common.engine.api.variable.VariableContainer
-
hasVariableLocal
Returns whether this scope has a specific variable. -
removeVariable
Removes the variable and creates a new HistoricVariableUpdate. -
removeVariableLocal
Removes the local variable and creates a new HistoricVariableUpdate. -
removeVariables
Removes the variables and creates a new HistoricVariableUpdate for each of them. -
removeVariablesLocal
Removes the local variables and creates a new HistoricVariableUpdate for each of them. -
removeVariables
void removeVariables()Removes the (local) variables and creates a new HistoricVariableUpdate for each of them. -
removeVariablesLocal
void removeVariablesLocal()Removes the (local) variables and creates a new HistoricVariableUpdate for each of them. -
setTransientVariable
Similar tosetVariable(String, Object)
, but the variable is transient: - no history is kept for the variable - the variable is only available until a waitstate is reached in the process - transient variables 'shadow' persistent variable (when getVariable('abc') where 'abc' is both persistent and transient, the transient value is returned.- Specified by:
setTransientVariable
in interfaceorg.flowable.common.engine.api.variable.VariableContainer
-
setTransientVariableLocal
Similar tosetVariableLocal(String, Object)
, but for a transient variable. SeesetTransientVariable(String, Object)
for the rules on 'transient' variables. -
setTransientVariables
Similar tosetVariables(Map)
, but for transient variables. SeesetTransientVariable(String, Object)
for the rules on 'transient' variables. -
getTransientVariable
Similar togetVariable(String)
, including the searching via the parent scopes, but for transient variables only. SeesetTransientVariable(String, Object)
for the rules on 'transient' variables. -
getTransientVariables
Similar togetVariables()
, but for transient variables only. SeesetTransientVariable(String, Object)
for the rules on 'transient' variables. -
setTransientVariablesLocal
Similar tosetVariablesLocal(Map)
, but for transient variables. SeesetTransientVariable(String, Object)
for the rules on 'transient' variables. -
getTransientVariableLocal
Similar togetVariableLocal(String)
, but for a transient variable. SeesetTransientVariable(String, Object)
for the rules on 'transient' variables. -
getTransientVariablesLocal
Similar togetVariableLocal(String)
, but for transient variables only. SeesetTransientVariable(String, Object)
for the rules on 'transient' variables. -
removeTransientVariableLocal
Removes a specific transient variable (also searching parent scopes). SeesetTransientVariable(String, Object)
for the rules on 'transient' variables. -
removeTransientVariable
Removes a specific transient variable. SeesetTransientVariable(String, Object)
for the rules on 'transient' variables. -
removeTransientVariables
void removeTransientVariables()Remove all transient variable of this scope and its parent scopes. SeesetTransientVariable(String, Object)
for the rules on 'transient' variables. -
removeTransientVariablesLocal
void removeTransientVariablesLocal()Removes all local transient variables. SeesetTransientVariable(String, Object)
for the rules on 'transient' variables.
-