Interface CommentEntityManager
-
- All Superinterfaces:
EntityManager<CommentEntity>
- All Known Implementing Classes:
CommentEntityManagerImpl
public interface CommentEntityManager extends EntityManager<CommentEntity>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description long
countByCriteria(CommentQuery commentQuery)
CommentQuery
createCommentQuery()
void
deleteByScopeIdAndScopeType(String scopeId, String scopeType)
List<Comment>
findByCriteria(CommentQuery commentQuery)
List<Comment>
findByScopeIdAndScopeType(String scopeId, String scopeType)
List<Comment>
findByUserId(String userId)
-
-
-
Method Detail
-
createCommentQuery
CommentQuery createCommentQuery()
-
findByScopeIdAndScopeType
List<Comment> findByScopeIdAndScopeType(String scopeId, String scopeType)
-
countByCriteria
long countByCriteria(CommentQuery commentQuery)
-
findByCriteria
List<Comment> findByCriteria(CommentQuery commentQuery)
-
-