Interface CommentService
-
- All Known Implementing Classes:
CommentServiceImpl
public interface CommentService
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CommentBuildercreateCommentBuilder()CommentQuerycreateCommentQuery()voiddeleteComment(String id)CommentfindById(String id)List<Comment>findByScopeIdAndScopeType(String scopeId, String scopeType)CommentupdateComment(String commentId, String content)
-
-
-
Method Detail
-
createCommentQuery
CommentQuery createCommentQuery()
-
createCommentBuilder
CommentBuilder createCommentBuilder()
-
findByScopeIdAndScopeType
List<Comment> findByScopeIdAndScopeType(String scopeId, String scopeType)
-
deleteComment
void deleteComment(String id)
-
-