Uses of Interface
org.activiti.engine.impl.persistence.entity.VariableInstance
-
-
Uses of VariableInstance in org.activiti.engine
Methods in org.activiti.engine that return VariableInstance Modifier and Type Method Description VariableInstanceRuntimeService. getVariableInstance(java.lang.String executionId, java.lang.String variableName)The variable.VariableInstanceTaskService. getVariableInstance(java.lang.String taskId, java.lang.String variableName)The variable.VariableInstanceRuntimeService. getVariableInstanceLocal(java.lang.String executionId, java.lang.String variableName)The variable for an execution.VariableInstanceTaskService. getVariableInstanceLocal(java.lang.String taskId, java.lang.String variableName)The variable for a task.Methods in org.activiti.engine that return types with arguments of type VariableInstance Modifier and Type Method Description java.util.Map<java.lang.String,VariableInstance>RuntimeService. getVariableInstances(java.lang.String executionId)All variables visible from the given execution scope (including parent scopes).java.util.Map<java.lang.String,VariableInstance>RuntimeService. getVariableInstances(java.lang.String executionId, java.util.Collection<java.lang.String> variableNames)The variable values for all given variableNames, takes all variables into account which are visible from the given execution scope (including parent scopes).java.util.Map<java.lang.String,VariableInstance>TaskService. getVariableInstances(java.lang.String taskId)All variables visible from the given task scope (including parent scopes).java.util.Map<java.lang.String,VariableInstance>TaskService. getVariableInstances(java.lang.String taskId, java.util.Collection<java.lang.String> variableNames)The variable values for all given variableNames, takes all variables into account which are visible from the given task scope (including parent scopes).java.util.List<VariableInstance>RuntimeService. getVariableInstancesByExecutionIds(java.util.Set<java.lang.String> executionIds)All variables visible from the given execution scope (including parent scopes).java.util.Map<java.lang.String,VariableInstance>RuntimeService. getVariableInstancesLocal(java.lang.String executionId)All variable values that are defined in the execution scope, without taking outer scopes into account.java.util.Map<java.lang.String,VariableInstance>RuntimeService. getVariableInstancesLocal(java.lang.String executionId, java.util.Collection<java.lang.String> variableNames)The variable values for the given variableNames only taking the given execution scope into account, not looking in outer scopes.java.util.Map<java.lang.String,VariableInstance>TaskService. getVariableInstancesLocal(java.lang.String taskId)All variable values that are defined in the task scope, without taking outer scopes into account.java.util.Map<java.lang.String,VariableInstance>TaskService. getVariableInstancesLocal(java.lang.String taskId, java.util.Collection<java.lang.String> variableNames)The variable values for all given variableNames that are defined in the given task's scope.java.util.List<VariableInstance>TaskService. getVariableInstancesLocalByTaskIds(java.util.Set<java.lang.String> taskIds)get all variables and search only in the task scope. -
Uses of VariableInstance in org.activiti.engine.delegate
Methods in org.activiti.engine.delegate that return VariableInstance Modifier and Type Method Description VariableInstanceVariableScope. getVariableInstance(java.lang.String variableName)Similar toVariableScope.getVariable(String), but returns aVariableInstanceinstance, which contains more information than just the value.VariableInstanceVariableScope. getVariableInstance(java.lang.String variableName, boolean fetchAllVariables)Similar toVariableScope.getVariable(String, boolean), but returns an instance ofVariableInstance, which has some additional information beyond the value.VariableInstanceVariableScope. getVariableInstanceLocal(java.lang.String variableName)Similar toVariableScope.getVariableLocal(String), but returns an instance ofVariableInstance, which has some additional information beyond the value.VariableInstanceVariableScope. getVariableInstanceLocal(java.lang.String variableName, boolean fetchAllVariables)Similar toVariableScope.getVariableLocal(String, boolean), but returns an instance ofVariableInstance, which has some additional information beyond the value.Methods in org.activiti.engine.delegate that return types with arguments of type VariableInstance Modifier and Type Method Description java.util.Map<java.lang.String,VariableInstance>VariableScope. getVariableInstances()Returns all variables, as instances of theVariableInstanceinterface, which gives more information than only the the value (type, execution id, etc.)java.util.Map<java.lang.String,VariableInstance>VariableScope. getVariableInstances(java.util.Collection<java.lang.String> variableNames)Similar toVariableScope.getVariableInstances(), but limited to only the variables with the provided names.java.util.Map<java.lang.String,VariableInstance>VariableScope. getVariableInstances(java.util.Collection<java.lang.String> variableNames, boolean fetchAllVariables)Similar toVariableScope.getVariables(Collection, boolean)but returns the variables as instances of theVariableInstanceinterface, which gives more information than only the the value (type, execution id, etc.)java.util.Map<java.lang.String,VariableInstance>VariableScope. getVariableInstancesLocal()Returns the variables local to this scope as instances of theVariableInstanceinterface, which provided additional information about the variable.java.util.Map<java.lang.String,VariableInstance>VariableScope. getVariableInstancesLocal(java.util.Collection<java.lang.String> variableNames)Similar toVariableScope.getVariableInstances(Collection), but only for variables local to this scope.java.util.Map<java.lang.String,VariableInstance>VariableScope. getVariableInstancesLocal(java.util.Collection<java.lang.String> variableNames, boolean fetchAllVariables)Similar toVariableScope.getVariableInstances(Collection, boolean), but only for variables local to this scope. -
Uses of VariableInstance in org.activiti.engine.impl
Methods in org.activiti.engine.impl that return VariableInstance Modifier and Type Method Description VariableInstanceRuntimeServiceImpl. getVariableInstance(java.lang.String executionId, java.lang.String variableName)VariableInstanceTaskServiceImpl. getVariableInstance(java.lang.String taskId, java.lang.String variableName)VariableInstanceRuntimeServiceImpl. getVariableInstanceLocal(java.lang.String executionId, java.lang.String variableName)VariableInstanceTaskServiceImpl. getVariableInstanceLocal(java.lang.String taskId, java.lang.String variableName)Methods in org.activiti.engine.impl that return types with arguments of type VariableInstance Modifier and Type Method Description java.util.Map<java.lang.String,VariableInstance>RuntimeServiceImpl. getVariableInstances(java.lang.String executionId)java.util.Map<java.lang.String,VariableInstance>RuntimeServiceImpl. getVariableInstances(java.lang.String executionId, java.util.Collection<java.lang.String> variableNames)java.util.Map<java.lang.String,VariableInstance>TaskServiceImpl. getVariableInstances(java.lang.String taskId)java.util.Map<java.lang.String,VariableInstance>TaskServiceImpl. getVariableInstances(java.lang.String taskId, java.util.Collection<java.lang.String> variableNames)java.util.List<VariableInstance>RuntimeServiceImpl. getVariableInstancesByExecutionIds(java.util.Set<java.lang.String> executionIds)java.util.Map<java.lang.String,VariableInstance>RuntimeServiceImpl. getVariableInstancesLocal(java.lang.String executionId)java.util.Map<java.lang.String,VariableInstance>RuntimeServiceImpl. getVariableInstancesLocal(java.lang.String executionId, java.util.Collection<java.lang.String> variableNames)java.util.Map<java.lang.String,VariableInstance>TaskServiceImpl. getVariableInstancesLocal(java.lang.String taskId)java.util.Map<java.lang.String,VariableInstance>TaskServiceImpl. getVariableInstancesLocal(java.lang.String taskId, java.util.Collection<java.lang.String> variableNames)java.util.List<VariableInstance>TaskServiceImpl. getVariableInstancesLocalByTaskIds(java.util.Set<java.lang.String> taskIds) -
Uses of VariableInstance in org.activiti.engine.impl.cmd
Methods in org.activiti.engine.impl.cmd that return VariableInstance Modifier and Type Method Description VariableInstanceGetExecutionVariableInstanceCmd. execute(CommandContext commandContext)VariableInstanceGetTaskVariableInstanceCmd. execute(CommandContext commandContext)Methods in org.activiti.engine.impl.cmd that return types with arguments of type VariableInstance Modifier and Type Method Description java.util.List<VariableInstance>GetExecutionsVariablesCmd. execute(CommandContext commandContext)java.util.Map<java.lang.String,VariableInstance>GetExecutionVariableInstancesCmd. execute(CommandContext commandContext)java.util.List<VariableInstance>GetTasksLocalVariablesCmd. execute(CommandContext commandContext)java.util.Map<java.lang.String,VariableInstance>GetTaskVariableInstancesCmd. execute(CommandContext commandContext) -
Uses of VariableInstance in org.activiti.engine.impl.el
Methods in org.activiti.engine.impl.el that return VariableInstance Modifier and Type Method Description VariableInstanceNoExecutionVariableScope. getVariableInstance(java.lang.String variableName)VariableInstanceNoExecutionVariableScope. getVariableInstance(java.lang.String variableName, boolean fetchAllVariables)VariableInstanceNoExecutionVariableScope. getVariableInstanceLocal(java.lang.String variableName)VariableInstanceNoExecutionVariableScope. getVariableInstanceLocal(java.lang.String variableName, boolean fetchAllVariables)Methods in org.activiti.engine.impl.el that return types with arguments of type VariableInstance Modifier and Type Method Description java.util.Map<java.lang.String,VariableInstance>NoExecutionVariableScope. getVariableInstances()java.util.Map<java.lang.String,VariableInstance>NoExecutionVariableScope. getVariableInstances(java.util.Collection<java.lang.String> variableNames)java.util.Map<java.lang.String,VariableInstance>NoExecutionVariableScope. getVariableInstances(java.util.Collection<java.lang.String> variableNames, boolean fetchAllVariables)java.util.Map<java.lang.String,VariableInstance>NoExecutionVariableScope. getVariableInstancesLocal()java.util.Map<java.lang.String,VariableInstance>NoExecutionVariableScope. getVariableInstancesLocal(java.util.Collection<java.lang.String> variableNames)java.util.Map<java.lang.String,VariableInstance>NoExecutionVariableScope. getVariableInstancesLocal(java.util.Collection<java.lang.String> variableNames, boolean fetchAllVariables) -
Uses of VariableInstance in org.activiti.engine.impl.persistence.entity
Subinterfaces of VariableInstance in org.activiti.engine.impl.persistence.entity Modifier and Type Interface Description interfaceVariableInstanceEntityClasses in org.activiti.engine.impl.persistence.entity that implement VariableInstance Modifier and Type Class Description classTransientVariableInstanceA dummy implementation ofVariableInstance, used for storing transient variables on aVariableScope, as theVariableScopeworks with instances ofVariableInstanceand not with raw key/values.classVariableInstanceEntityImplFields in org.activiti.engine.impl.persistence.entity with type parameters of type VariableInstance Modifier and Type Field Description protected java.util.Map<java.lang.String,VariableInstance>VariableScopeImpl. transientVariabesMethods in org.activiti.engine.impl.persistence.entity that return VariableInstance Modifier and Type Method Description VariableInstanceVariableScopeImpl. getVariableInstance(java.lang.String variableName)VariableInstanceVariableScopeImpl. getVariableInstance(java.lang.String variableName, boolean fetchAllVariables)VariableInstanceVariableScopeImpl. getVariableInstanceLocal(java.lang.String variableName)VariableInstanceVariableScopeImpl. getVariableInstanceLocal(java.lang.String variableName, boolean fetchAllVariables)Methods in org.activiti.engine.impl.persistence.entity that return types with arguments of type VariableInstance Modifier and Type Method Description protected java.util.Map<java.lang.String,VariableInstance>VariableScopeImpl. collectVariableInstances(java.util.HashMap<java.lang.String,VariableInstance> variables)java.util.Map<java.lang.String,VariableInstance>VariableScopeImpl. getVariableInstances()java.util.Map<java.lang.String,VariableInstance>VariableScopeImpl. getVariableInstances(java.util.Collection<java.lang.String> variableNames)java.util.Map<java.lang.String,VariableInstance>VariableScopeImpl. getVariableInstances(java.util.Collection<java.lang.String> variableNames, boolean fetchAllVariables)java.util.Map<java.lang.String,VariableInstance>VariableScopeImpl. getVariableInstancesLocal()java.util.Map<java.lang.String,VariableInstance>VariableScopeImpl. getVariableInstancesLocal(java.util.Collection<java.lang.String> variableNames)java.util.Map<java.lang.String,VariableInstance>VariableScopeImpl. getVariableInstancesLocal(java.util.Collection<java.lang.String> variableNames, boolean fetchAllVariables)Method parameters in org.activiti.engine.impl.persistence.entity with type arguments of type VariableInstance Modifier and Type Method Description protected java.util.Map<java.lang.String,VariableInstance>VariableScopeImpl. collectVariableInstances(java.util.HashMap<java.lang.String,VariableInstance> variables)
-