Interface ActionDeploymentDataManager
-
- All Superinterfaces:
DataManager<ActionDeploymentEntity>
- All Known Implementing Classes:
MybatisActionDeploymentDataManager
public interface ActionDeploymentDataManager extends DataManager<ActionDeploymentEntity>
- Author:
- Tijs Rademakers
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description long
findDeploymentCountByNativeQuery(Map<String,Object> parameterMap)
long
findDeploymentCountByQueryCriteria(ActionDeploymentQueryImpl deploymentQuery)
List<ActionDeployment>
findDeploymentsByNativeQuery(Map<String,Object> parameterMap)
List<ActionDeployment>
findDeploymentsByQueryCriteria(ActionDeploymentQueryImpl deploymentQuery)
List<String>
getDeploymentResourceNames(String deploymentId)
-
-
-
Method Detail
-
findDeploymentCountByQueryCriteria
long findDeploymentCountByQueryCriteria(ActionDeploymentQueryImpl deploymentQuery)
-
findDeploymentsByQueryCriteria
List<ActionDeployment> findDeploymentsByQueryCriteria(ActionDeploymentQueryImpl deploymentQuery)
-
findDeploymentsByNativeQuery
List<ActionDeployment> findDeploymentsByNativeQuery(Map<String,Object> parameterMap)
-
-