Uses of Class
com.restapi.template.api.community.comment.data.Comment
-
-
Uses of Comment in com.restapi.template.api.community.comment.data
Methods in com.restapi.template.api.community.comment.data that return types with arguments of type Comment Modifier and Type Method Description java.util.Optional<Comment>CommentRepository. findByAuthor_UserIdAndCommentId(java.lang.String userId, java.lang.Long commentId)사용자의 댓글인지 확인하며 댓글조회.Constructors in com.restapi.template.api.community.comment.data with parameters of type Comment Constructor Description CommentResource(Comment comment, org.springframework.hateoas.Link... links)댓글 Resource(for Hateoas). -
Uses of Comment in com.restapi.template.api.community.comment.service
Methods in com.restapi.template.api.community.comment.service that return Comment Modifier and Type Method Description CommentCommentService. getMyComment(java.lang.Long commentId, java.lang.String requestUserId)내 댓글 가져오기. -
Uses of Comment in com.restapi.template.api.community.dto
Constructors in com.restapi.template.api.community.dto with parameters of type Comment Constructor Description CommentDto(Comment comment)Comment to Dto. -
Uses of Comment in com.restapi.template.api.community.post.data
Fields in com.restapi.template.api.community.post.data with type parameters of type Comment Modifier and Type Field Description private java.util.List<Comment>Post. comments댓글들.Methods in com.restapi.template.api.community.post.data with parameters of type Comment Modifier and Type Method Description voidPost. addComment(Comment comment)댓글 추가.voidPost. deleteComment(Comment comment)댓글 삭제.voidPost. updateComment(Comment comment, java.lang.String message)댓글 수정.
-