Interface CommentEntityManager
-
- All Superinterfaces:
EntityManager<CommentEntity>
- All Known Implementing Classes:
CommentEntityManagerImpl
public interface CommentEntityManager extends EntityManager<CommentEntity>
- Author:
- Joram Barrez
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidbulkDeleteCommentsForProcessInstanceIds(Collection<String> processInstanceIds)voidbulkDeleteCommentsForTaskIds(Collection<String> taskIds)voiddeleteCommentsByProcessInstanceId(String processInstanceId)voiddeleteCommentsByTaskId(String taskId)CommentfindComment(String commentId)List<Comment>findCommentsByProcessInstanceId(String processInstanceId)List<Comment>findCommentsByProcessInstanceId(String processInstanceId, String type)List<Comment>findCommentsByTaskId(String taskId)List<Comment>findCommentsByTaskIdAndType(String taskId, String type)List<Comment>findCommentsByType(String type)EventfindEvent(String commentId)List<Event>findEventsByProcessInstanceId(String processInstanceId)List<Event>findEventsByTaskId(String taskId)
-
-
-
Method Detail
-
deleteCommentsByTaskId
void deleteCommentsByTaskId(String taskId)
-
deleteCommentsByProcessInstanceId
void deleteCommentsByProcessInstanceId(String processInstanceId)
-
bulkDeleteCommentsForTaskIds
void bulkDeleteCommentsForTaskIds(Collection<String> taskIds)
-
bulkDeleteCommentsForProcessInstanceIds
void bulkDeleteCommentsForProcessInstanceIds(Collection<String> processInstanceIds)
-
findCommentsByProcessInstanceId
List<Comment> findCommentsByProcessInstanceId(String processInstanceId)
-
findCommentsByProcessInstanceId
List<Comment> findCommentsByProcessInstanceId(String processInstanceId, String type)
-
-