Interface CommentService
- All Known Implementing Classes:
CommentServiceImpl
public interface CommentService
-
Method Summary
Modifier and Type Method Description CommentBuilder
createCommentBuilder()
CommentQuery
createCommentQuery()
void
deleteComment(java.lang.String id)
Comment
findById(java.lang.String id)
java.util.List<Comment>
findByScopeIdAndScopeType(java.lang.String scopeId, java.lang.String scopeType)
Comment
updateComment(java.lang.String commentId, java.lang.String content)
-
Method Details
-
createCommentQuery
CommentQuery createCommentQuery() -
createCommentBuilder
CommentBuilder createCommentBuilder() -
findById
-
findByScopeIdAndScopeType
java.util.List<Comment> findByScopeIdAndScopeType(java.lang.String scopeId, java.lang.String scopeType) -
updateComment
-
deleteComment
void deleteComment(java.lang.String id)
-