Interface AppIncidentEntityManager
-
- All Superinterfaces:
EntityManager<AppIncidentEntity>
- All Known Implementing Classes:
AppIncidentEntityManagerImpl
public interface AppIncidentEntityManager extends EntityManager<AppIncidentEntity>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AppIncident
create(AppIncidentBuilder appIncidentBuilder, Date createTime)
AppIncidentQuery
createAppIncidentQuery()
void
deleteAppIncidentsByAppKey(String appKey)
void
deleteAppIncidentsByAppKeyAndTenantId(String appKey, String tenantId)
long
findAppIncidentCountByQueryCriteria(AppIncidentQueryImpl appIncidentQuery)
List<AppIncidentEntity>
findAppIncidentsByAppKey(String appKey)
List<AppIncidentEntity>
findAppIncidentsByAppKeyAndTenantId(String appKey, String tenantId)
List<AppIncident>
findAppIncidentsByQueryCriteria(AppIncidentQueryImpl appIncidentQuery)
-
-
-
Method Detail
-
create
AppIncident create(AppIncidentBuilder appIncidentBuilder, Date createTime)
-
findAppIncidentsByAppKey
List<AppIncidentEntity> findAppIncidentsByAppKey(String appKey)
-
findAppIncidentsByAppKeyAndTenantId
List<AppIncidentEntity> findAppIncidentsByAppKeyAndTenantId(String appKey, String tenantId)
-
createAppIncidentQuery
AppIncidentQuery createAppIncidentQuery()
-
findAppIncidentCountByQueryCriteria
long findAppIncidentCountByQueryCriteria(AppIncidentQueryImpl appIncidentQuery)
-
findAppIncidentsByQueryCriteria
List<AppIncident> findAppIncidentsByQueryCriteria(AppIncidentQueryImpl appIncidentQuery)
-
deleteAppIncidentsByAppKey
void deleteAppIncidentsByAppKey(String appKey)
-
-