Class InvitationResource
- java.lang.Object
-
- org.silverpeas.core.web.rs.RESTWebService
-
- org.silverpeas.core.webapi.socialnetwork.invitation.InvitationResource
-
- All Implemented Interfaces:
ProtectedWebResource
,WebAuthenticationValidation
,WebAuthorizationValidation
,SilverpeasWebResource
@RequestScoped @Path("invitations") @Authenticated public class InvitationResource extends RESTWebService
It represents a resource published in the WEB that represents an invitation emitted by a user to another one in the Silverpeas platform. The WEB resource belongs always to the current user in the session underlying at the HTTP request. Then, it represents an invitation either sent or received by him. With a such policy, the invitations belonging to another user cannot be fetched by him.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class org.silverpeas.core.web.rs.RESTWebService
RESTWebService.WebProcess<R>, RESTWebService.WebTreatment<R>
-
-
Field Summary
-
Fields inherited from class org.silverpeas.core.web.rs.RESTWebService
RESPONSE_HEADER_ARRAYSIZE
-
Fields inherited from interface org.silverpeas.core.web.SilverpeasWebResource
BASE_PATH
-
-
Constructor Summary
Constructors Constructor Description InvitationResource()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description javax.ws.rs.core.Response
acceptInvitation(Integer id)
javax.ws.rs.core.Response
cancelInvitation(Integer id)
javax.ws.rs.core.Response
createInvitation(InvitationEntity invitationEntity)
String
getComponentId()
Gets the identifier of the component instance to which the requested resource belongs to.InvitationEntity
getInvitation(Integer id)
List<InvitationEntity>
getReceivedInvitations()
protected String
getResourceBasePath()
Gets the base path of the web resource relative to the root path of all the web resources in Silverpeas as given bySilverpeasWebResource.getBasePath()
.List<InvitationEntity>
getSentInvitations()
-
Methods inherited from class org.silverpeas.core.web.rs.RESTWebService
createWebResourceUri, fromPage, getBundle, getBundleLocation, getHighestUserRole, getHttpRequest, getHttpServletRequest, getHttpServletResponse, getOrganisationController, getSilverpeasContext, getUri, getUser, getUserPreferences, getUserRoles, identifiedBy, identifiedBy, initContext, initWebResourceUri, isUserDefined, process
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.silverpeas.core.web.rs.ProtectedWebResource
validateUserAuthorization
-
Methods inherited from interface org.silverpeas.core.web.rs.WebAuthenticationValidation
validateUserAuthentication
-
-
-
-
Method Detail
-
getReceivedInvitations
@Path("inbox") @GET @Produces("application/json") public List<InvitationEntity> getReceivedInvitations()
-
getSentInvitations
@Path("outbox") @GET @Produces("application/json") public List<InvitationEntity> getSentInvitations()
-
getInvitation
@Path("{id}") @GET @Produces("application/json") public InvitationEntity getInvitation(@PathParam("id") Integer id)
-
cancelInvitation
@DELETE @Path("{id}") @Produces("application/json") public javax.ws.rs.core.Response cancelInvitation(@PathParam("id") Integer id)
-
acceptInvitation
@PUT @Path("{id}") @Produces("application/json") public javax.ws.rs.core.Response acceptInvitation(@PathParam("id") Integer id)
-
createInvitation
@POST @Consumes("application/json") @Produces("application/json") public javax.ws.rs.core.Response createInvitation(InvitationEntity invitationEntity)
-
getResourceBasePath
protected String getResourceBasePath()
Description copied from class:RESTWebService
Gets the base path of the web resource relative to the root path of all the web resources in Silverpeas as given bySilverpeasWebResource.getBasePath()
.- Specified by:
getResourceBasePath
in classRESTWebService
- Returns:
- the relative path that identifies this REST web service among all other REST web services.
-
getComponentId
public String getComponentId()
Description copied from interface:SilverpeasWebResource
Gets the identifier of the component instance to which the requested resource belongs to.- Returns:
- the identifier of the Silverpeas component instance.
-
-