Interface CommentService
-
- All Known Implementing Classes:
CommentServiceImpl
public interface CommentService
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CommentBuilder
createCommentBuilder()
CommentQuery
createCommentQuery()
void
deleteComment(String id)
Comment
findById(String id)
List<Comment>
findByScopeIdAndScopeType(String scopeId, String scopeType)
Comment
updateComment(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)
-
-