Interface ReplyService

All Known Implementing Classes:
ReplyServiceImpl

public interface ReplyService
  • Method Details

    • createReply

      ReplyEntity createReply(String content, Long feedbackId, Long userId, Long parentId, Boolean internal)
    • updateReply

      ReplyEntity updateReply(Long replyId, String content)
    • deleteReply

      void deleteReply(Long replyId)
    • getReply

      ReplyEntity getReply(Long replyId)
    • getRepliesByFeedback

      org.springframework.data.domain.Page<ReplyEntity> getRepliesByFeedback(Long feedbackId, org.springframework.data.domain.Pageable pageable)
    • getRepliesByUser

      org.springframework.data.domain.Page<ReplyEntity> getRepliesByUser(Long userId, org.springframework.data.domain.Pageable pageable)
    • incrementLikeCount

      void incrementLikeCount(Long replyId)