Interface TaskCommentResource
-
- All Known Implementing Classes:
TaskCommentResourceImpl
public interface TaskCommentResource
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CommentDtocreateComment(javax.ws.rs.core.UriInfo uriInfo, CommentDto comment)CommentDtogetComment(String commentId)List<CommentDto>getComments()
-
-
-
Method Detail
-
getComments
List<CommentDto> getComments()
-
getComment
CommentDto getComment(String commentId)
-
createComment
CommentDto createComment(@Context javax.ws.rs.core.UriInfo uriInfo, CommentDto comment)
-
-