Class Comments
- java.lang.Object
-
- org.gcube.social_networking.rest.collections.Collection
-
- org.gcube.social_networking.rest.collections.Comments
-
@Path("comments") public class Comments extends Collection
-
-
Constructor Summary
Constructors Constructor Description Comments()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description jakarta.ws.rs.core.ResponsereadComment(@NotNull String id)jakarta.ws.rs.core.ResponseupdateComment(@NotNull String id, @NotNull org.gcube.social_networking.socialnetworking.model.shared.Comment comment)-
Methods inherited from class org.gcube.social_networking.rest.collections.Collection
BatchCreateChildOfWithParameter, BatchDeleteChildOfWithParameter, BatchUpdateChildOf, check, checkChildOf, create, createChildOf, delete, deleteChildOf, deleteChildOfWithParameter, deleteWithParameter, read, readAll, readChildOf, readChildOfWithParameter, readWithParameter, update, updateChildOf, updateChildOfWithParameter, updateWithParameter
-
-
-
-
Method Detail
-
readComment
@GET @Path("/{id}") @Produces("application/json") public jakarta.ws.rs.core.Response readComment(@NotNull @PathParam("id") @NotNull String id)
-
updateComment
@PUT @Path("/{id}") @Consumes("application/json") @Produces("application/json") public jakarta.ws.rs.core.Response updateComment(@NotNull @PathParam("id") @NotNull String id, @NotNull @NotNull org.gcube.social_networking.socialnetworking.model.shared.Comment comment)
-
-