Interface CommentDataManager
-
- All Superinterfaces:
org.flowable.common.engine.impl.persistence.entity.data.DataManager<CommentEntity>
- All Known Implementing Classes:
MyBatisCommentDataManager
public interface CommentDataManager extends org.flowable.common.engine.impl.persistence.entity.data.DataManager<CommentEntity>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description long
countByCriteria(CommentQueryImpl commentQuery)
void
deleteByScopeIdAndScopeType(java.lang.String scopeId, java.lang.String scopeType)
java.util.List<Comment>
findByCriteria(CommentQueryImpl commentQuery)
java.util.List<Comment>
findCommentEntityByUserId(java.lang.String userId)
java.util.List<Comment>
findCommentsByScopeIdAndType(java.lang.String scopeId, java.lang.String scopeType)
-
-
-
Method Detail
-
findCommentsByScopeIdAndType
java.util.List<Comment> findCommentsByScopeIdAndType(java.lang.String scopeId, java.lang.String scopeType)
-
findCommentEntityByUserId
java.util.List<Comment> findCommentEntityByUserId(java.lang.String userId)
-
countByCriteria
long countByCriteria(CommentQueryImpl commentQuery)
-
findByCriteria
java.util.List<Comment> findByCriteria(CommentQueryImpl commentQuery)
-
deleteByScopeIdAndScopeType
void deleteByScopeIdAndScopeType(java.lang.String scopeId, java.lang.String scopeType)
-
-