Package org.kie.internal.task.api
Interface TaskCommentService
-
public interface TaskCommentServiceThe Task Comment Service will handle all the operations related with the Comments associated with a Task
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description longaddComment(long taskId, org.kie.api.task.model.Comment comment)voiddeleteComment(long taskId, long commentId)java.util.List<org.kie.api.task.model.Comment>getAllCommentsByTaskId(long taskId)org.kie.api.task.model.CommentgetCommentById(long commentId)
-
-
-
Method Detail
-
addComment
long addComment(long taskId, org.kie.api.task.model.Comment comment)
-
deleteComment
void deleteComment(long taskId, long commentId)
-
getAllCommentsByTaskId
java.util.List<org.kie.api.task.model.Comment> getAllCommentsByTaskId(long taskId)
-
getCommentById
org.kie.api.task.model.Comment getCommentById(long commentId)
-
-