Interface RecurringEventEnablerReceiver
- All Superinterfaces:
OsidReceiver
The recurring event enabler receiver is the consumer supplied interface for receiving notifications pertaining to new, updated or deleted recurring event enablers.
-
Method Summary
Modifier and TypeMethodDescriptionvoidchangedRecurringEventEnablers(Id notificationId, IdList recurringEventEnablerIds) The callback for notification of updated recurring event enablers.voiddeletedRecurringEventEnablers(Id notificationId, IdList recurringEventEnablerIds) The callback for notification of deleted recurring event enablers.voidnewRecurringEventEnablers(Id notificationId, IdList recurringEventEnablerIds) The callback for notifications of new recurring event enablers.Methods inherited from interface OsidReceiver
down, up
-
Method Details
-
newRecurringEventEnablers
The callback for notifications of new recurring event enablers.- Parameters:
notificationId- the notificationIdrecurringEventEnablerIds- theIdof the newRecurringEventEnablers- Compliance:
mandatory- This method must be implemented.
-
changedRecurringEventEnablers
The callback for notification of updated recurring event enablers.- Parameters:
notificationId- the notificationIdrecurringEventEnablerIds- theIdof the updatedRecurringEventEnablers- Compliance:
mandatory- This method must be implemented.
-
deletedRecurringEventEnablers
The callback for notification of deleted recurring event enablers.- Parameters:
notificationId- the notificationIdrecurringEventEnablerIds- theIdof the deletedRecurringEventEnablers- Compliance:
mandatory- This method must be implemented.
-