Class UserCalendarResource
- java.lang.Object
-
- org.silverpeas.core.web.rs.RESTWebService
-
- org.silverpeas.core.webapi.calendar.AbstractCalendarResource
-
- org.silverpeas.core.webapi.calendar.CalendarResource
-
- org.silverpeas.web.usercalendar.services.UserCalendarResource
-
- All Implemented Interfaces:
ProtectedWebResource
,WebAuthenticationValidation
,WebAuthorizationValidation
,SilverpeasWebResource
@WebService @Path("usercalendar/{componentInstanceId}") @Authorized public class UserCalendarResource extends CalendarResource
A REST Web resource giving calendar data.- Author:
- Yohann Chastagnier
-
-
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 UserCalendarResource()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
validateUserAuthorization(UserPrivilegeValidation validation)
Validates the authorization of the user to request this web service.-
Methods inherited from class org.silverpeas.core.webapi.calendar.CalendarResource
asAttendeeWebEntity, asAttributeWebEntity, asEventWebEntities, asEventWebEntity, asOccurrenceWebEntities, asOccurrenceWebEntity, asWebEntities, asWebEntity, createCalendar, createEvent, deleteCalendar, deleteEventOccurrence, exportCalendarAsICalendarFormat, getAllEventOccurrencesFrom, getBundleLocation, getCalendar, getCalendars, getEvent, getEventOccurrence, getEventOccurrencesOf, getEventOccurrencesOf, getNextEventOccurrences, importEventsAsICalendarFormat, synchronizeCalendar, updateCalendar, updateEventAttendeeParticipation, updateEventOccurrence
-
Methods inherited from class org.silverpeas.core.webapi.calendar.AbstractCalendarResource
getComponentId, getResourceBasePath, getZoneId, uri
-
Methods inherited from class org.silverpeas.core.web.rs.RESTWebService
createWebResourceUri, fromPage, getBundle, 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.WebAuthenticationValidation
validateUserAuthentication
-
-
-
-
Method Detail
-
validateUserAuthorization
public void validateUserAuthorization(UserPrivilegeValidation validation)
Description copied from interface:ProtectedWebResource
Validates the authorization of the user to request this web service. For doing, the user must have the rights to access the component instance that manages this web resource. If no such component instance exists, a Not Found HTTP error is thrown (status code 404). Otherwise the validation is delegated to the validation service by passing it the required information.This method should be invoked for web service requiring an authorized access. For doing, the authentication of the user must be first valdiated. Otherwise, the annotation Authorized can be also used instead at class level for both authentication and authorization.
- Parameters:
validation
- the validation instance to use.- See Also:
UserPrivilegeValidator
-
-