Interface ActionDeploymentDataManager
-
- All Superinterfaces:
org.flowable.common.engine.impl.persistence.entity.data.DataManager<ActionDeploymentEntity>
- All Known Implementing Classes:
MybatisActionDeploymentDataManager
public interface ActionDeploymentDataManager extends org.flowable.common.engine.impl.persistence.entity.data.DataManager<ActionDeploymentEntity>
- Author:
- Tijs Rademakers
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description longfindDeploymentCountByNativeQuery(java.util.Map<java.lang.String,java.lang.Object> parameterMap)longfindDeploymentCountByQueryCriteria(ActionDeploymentQueryImpl deploymentQuery)java.util.List<ActionDeployment>findDeploymentsByNativeQuery(java.util.Map<java.lang.String,java.lang.Object> parameterMap)java.util.List<ActionDeployment>findDeploymentsByQueryCriteria(ActionDeploymentQueryImpl deploymentQuery)java.util.List<java.lang.String>getDeploymentResourceNames(java.lang.String deploymentId)
-
-
-
Method Detail
-
findDeploymentCountByQueryCriteria
long findDeploymentCountByQueryCriteria(ActionDeploymentQueryImpl deploymentQuery)
-
findDeploymentsByQueryCriteria
java.util.List<ActionDeployment> findDeploymentsByQueryCriteria(ActionDeploymentQueryImpl deploymentQuery)
-
getDeploymentResourceNames
java.util.List<java.lang.String> getDeploymentResourceNames(java.lang.String deploymentId)
-
findDeploymentsByNativeQuery
java.util.List<ActionDeployment> findDeploymentsByNativeQuery(java.util.Map<java.lang.String,java.lang.Object> parameterMap)
-
findDeploymentCountByNativeQuery
long findDeploymentCountByNativeQuery(java.util.Map<java.lang.String,java.lang.Object> parameterMap)
-
-