Interface CommentEntityManager
-
- All Superinterfaces:
org.flowable.common.engine.impl.persistence.entity.EntityManager<CommentEntity>
- All Known Implementing Classes:
CommentEntityManagerImpl
public interface CommentEntityManager extends org.flowable.common.engine.impl.persistence.entity.EntityManager<CommentEntity>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description longcountByCriteria(CommentQuery commentQuery)CommentQuerycreateCommentQuery()voiddeleteByScopeIdAndScopeType(java.lang.String scopeId, java.lang.String scopeType)java.util.List<Comment>findByCriteria(CommentQuery commentQuery)java.util.List<Comment>findByScopeIdAndScopeType(java.lang.String scopeId, java.lang.String scopeType)java.util.List<Comment>findByUserId(java.lang.String userId)
-
-
-
Method Detail
-
createCommentQuery
CommentQuery createCommentQuery()
-
findByScopeIdAndScopeType
java.util.List<Comment> findByScopeIdAndScopeType(java.lang.String scopeId, java.lang.String scopeType)
-
findByUserId
java.util.List<Comment> findByUserId(java.lang.String userId)
-
countByCriteria
long countByCriteria(CommentQuery commentQuery)
-
findByCriteria
java.util.List<Comment> findByCriteria(CommentQuery commentQuery)
-
deleteByScopeIdAndScopeType
void deleteByScopeIdAndScopeType(java.lang.String scopeId, java.lang.String scopeType)
-
-