Class Invites
- java.lang.Object
-
- org.gcube.social_networking.rest.collections.Collection
-
- org.gcube.social_networking.rest.collections.Invites
-
@Path("invites") public class Invites extends Collection
-
-
Constructor Summary
Constructors Constructor Description Invites()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description jakarta.ws.rs.core.ResponsereadInvite(@NotNull String id)jakarta.ws.rs.core.ResponsesaveInvite(@NotNull org.gcube.social_networking.socialnetworking.model.shared.Invite invite)-
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
-
readInvite
@GET @Path("/{id}") @Produces("application/json") public jakarta.ws.rs.core.Response readInvite(@NotNull @PathParam("id") @NotNull String id)
-
saveInvite
@POST @Path("/") @Consumes("application/json") @Produces("application/json") public jakarta.ws.rs.core.Response saveInvite(@NotNull @NotNull org.gcube.social_networking.socialnetworking.model.shared.Invite invite)
-
-