Interface VariableInstanceDataManager
-
- All Superinterfaces:
DataManager<VariableInstanceEntity>
- All Known Implementing Classes:
MybatisVariableInstanceDataManager
public interface VariableInstanceDataManager extends DataManager<VariableInstanceEntity>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description VariableInstanceEntityfindVariableInstanceByExecutionAndName(String executionId, String variableName)VariableInstanceEntityfindVariableInstanceByTaskAndName(String taskId, String variableName)List<VariableInstanceEntity>findVariableInstancesByExecutionAndNames(String executionId, Collection<String> names)List<VariableInstanceEntity>findVariableInstancesByExecutionId(String executionId)List<VariableInstanceEntity>findVariableInstancesByExecutionIds(Set<String> executionIds)List<VariableInstanceEntity>findVariableInstancesByTaskAndNames(String taskId, Collection<String> names)List<VariableInstanceEntity>findVariableInstancesByTaskId(String taskId)List<VariableInstanceEntity>findVariableInstancesByTaskIds(Set<String> taskIds)
-
-
-
Method Detail
-
findVariableInstancesByTaskId
List<VariableInstanceEntity> findVariableInstancesByTaskId(String taskId)
-
findVariableInstancesByTaskIds
List<VariableInstanceEntity> findVariableInstancesByTaskIds(Set<String> taskIds)
-
findVariableInstancesByExecutionId
List<VariableInstanceEntity> findVariableInstancesByExecutionId(String executionId)
-
findVariableInstancesByExecutionIds
List<VariableInstanceEntity> findVariableInstancesByExecutionIds(Set<String> executionIds)
-
findVariableInstanceByExecutionAndName
VariableInstanceEntity findVariableInstanceByExecutionAndName(String executionId, String variableName)
-
findVariableInstancesByExecutionAndNames
List<VariableInstanceEntity> findVariableInstancesByExecutionAndNames(String executionId, Collection<String> names)
-
findVariableInstanceByTaskAndName
VariableInstanceEntity findVariableInstanceByTaskAndName(String taskId, String variableName)
-
findVariableInstancesByTaskAndNames
List<VariableInstanceEntity> findVariableInstancesByTaskAndNames(String taskId, Collection<String> names)
-
-