public interface VariableInstanceEntityManager extends EntityManager<VariableInstanceEntity>
VariableInstanceEntity create(String name, VariableType type, Object value)
VariableInstanceEntity create(String name, VariableType type)
VariableInstance.setValue(Object)
for setting the valuename - the name of the variable to createtype - the type of the creted variableVariableInstanceEntity to be usedList<VariableInstanceEntity> findVariableInstancesByTaskId(String taskId)
List<VariableInstanceEntity> findVariableInstancesByTaskIds(Set<String> taskIds)
List<VariableInstanceEntity> findVariableInstancesByExecutionId(String executionId)
List<VariableInstanceEntity> findVariableInstancesByExecutionIds(Set<String> executionIds)
VariableInstanceEntity findVariableInstanceByExecutionAndName(String executionId, String variableName)
List<VariableInstanceEntity> findVariableInstancesByExecutionAndNames(String executionId, Collection<String> names)
VariableInstanceEntity findVariableInstanceByTaskAndName(String taskId, String variableName)
List<VariableInstanceEntity> findVariableInstancesByTaskAndNames(String taskId, Collection<String> names)
List<VariableInstanceEntity> findVariableInstanceByScopeIdAndScopeType(String scopeId, String scopeType)
VariableInstanceEntity findVariableInstanceByScopeIdAndScopeTypeAndName(String scopeId, String scopeType, String variableName)
List<VariableInstanceEntity> findVariableInstancesByScopeIdAndScopeTypeAndNames(String scopeId, String scopeType, Collection<String> variableNames)
List<VariableInstanceEntity> findVariableInstanceBySubScopeIdAndScopeType(String subScopeId, String scopeType)
VariableInstanceEntity findVariableInstanceBySubScopeIdAndScopeTypeAndName(String subScopeId, String scopeType, String variableName)
List<VariableInstanceEntity> findVariableInstancesBySubScopeIdAndScopeTypeAndNames(String subScopeId, String scopeType, Collection<String> variableNames)
void deleteVariablesByTaskId(String taskId)
void deleteVariablesByExecutionId(String executionId)
Copyright © 2019 Flowable. All rights reserved.