public interface CalendarReceiver extends OsidReceiver
The vault receiver is the consumer supplied interface for receiving
notifications pertaining to new, updated or deleted Calendar
objects.
| Modifier and Type | Method and Description |
|---|---|
void |
changedCalendars(Id notificationId,
IdList calendarIds)
The callback for notification of updated calendars.
|
void |
changedChildOfCalendars(Id notificationId,
IdList calendarIds)
The callback for notifications of changes to children of calendar
hierarchy nodes.
|
void |
deletedCalendars(Id notificationId,
IdList calendarIds)
The callback for notification of deleted calendars.
|
void |
newCalendars(Id notificationId,
IdList calendarIds)
The callback for notifications of new calendars.
|
down, upvoid newCalendars(Id notificationId, IdList calendarIds)
notificationId - the notification Id calendarIds - the Ids of the new Calendars
mandatory - This method must be implemented. void changedCalendars(Id notificationId, IdList calendarIds)
notificationId - the notification Id calendarIds - the Ids of the updated
Calendars mandatory - This method must be implemented. void deletedCalendars(Id notificationId, IdList calendarIds)
notificationId - the notification Id calendarIds - the Ids of the deleted
Calendars mandatory - This method must be implemented. void changedChildOfCalendars(Id notificationId, IdList calendarIds)
notificationId - the notification Id calendarIds - the Ids of the Calendars
whose children have changedmandatory - This method must be implemented.