Class Likes


  • @Path("likes")
    public class Likes
    extends Collection
    • Constructor Detail

      • Likes

        public Likes()
    • Method Detail

      • createLike

        @POST
        @Path("/")
        @Consumes("application/json")
        @Produces("application/json")
        public jakarta.ws.rs.core.Response createLike​(org.gcube.social_networking.socialnetworking.model.shared.Like like)
      • readLike

        @GET
        @Path("/{id}")
        @Produces("application/json")
        public jakarta.ws.rs.core.Response readLike​(@NotNull @PathParam("id")
                                                    @NotNull String id)
      • deleteLike

        @DELETE
        @Path("/{id}")
        @Produces("application/json")
        public jakarta.ws.rs.core.Response deleteLike​(@NotNull @PathParam("id")
                                                      @NotNull String id)
      • updateLike

        @PUT
        @Path("/{id}")
        @Consumes("application/json")
        @Produces("application/json")
        public jakarta.ws.rs.core.Response updateLike​(@NotNull @PathParam("id")
                                                      @NotNull String id,
                                                      @NotNull
                                                      @NotNull org.gcube.social_networking.socialnetworking.model.shared.Like like)