Interface ActionDeploymentEntityManager
-
- All Superinterfaces:
EntityManager<ActionDeploymentEntity>
- All Known Implementing Classes:
ActionDeploymentEntityManagerImpl
public interface ActionDeploymentEntityManager extends EntityManager<ActionDeploymentEntity>
- Author:
- Tijs Rademakers
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ActionDeploymentQuery
createActionDeploymentQuery()
void
deleteDeployment(String deploymentId)
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
-
findDeploymentsByQueryCriteria
List<ActionDeployment> findDeploymentsByQueryCriteria(ActionDeploymentQueryImpl deploymentQuery)
-
findDeploymentsByNativeQuery
List<ActionDeployment> findDeploymentsByNativeQuery(Map<String,Object> parameterMap)
-
findDeploymentCountByNativeQuery
long findDeploymentCountByNativeQuery(Map<String,Object> parameterMap)
-
findDeploymentCountByQueryCriteria
long findDeploymentCountByQueryCriteria(ActionDeploymentQueryImpl deploymentQuery)
-
createActionDeploymentQuery
ActionDeploymentQuery createActionDeploymentQuery()
-
deleteDeployment
void deleteDeployment(String deploymentId)
-
-