public interface RecurringEventEnablerReceiver extends OsidReceiver
The recurring event enabler receiver is the consumer supplied interface for receiving notifications pertaining to new, updated or deleted recurring event enablers.
| Modifier and Type | Method and Description |
|---|---|
void |
changedRecurringEventEnablers(Id notificationId,
IdList recurringEventEnablerIds)
The callback for notification of updated recurring event enablers.
|
void |
deletedRecurringEventEnablers(Id notificationId,
IdList recurringEventEnablerIds)
The callback for notification of deleted recurring event enablers.
|
void |
newRecurringEventEnablers(Id notificationId,
IdList recurringEventEnablerIds)
The callback for notifications of new recurring event enablers.
|
down, upvoid newRecurringEventEnablers(Id notificationId, IdList recurringEventEnablerIds)
notificationId - the notification Id recurringEventEnablerIds - the Id of the new
RecurringEventEnablers mandatory - This method must be implemented. void changedRecurringEventEnablers(Id notificationId, IdList recurringEventEnablerIds)
notificationId - the notification Id recurringEventEnablerIds - the Id of the updated
RecurringEventEnablers mandatory - This method must be implemented. void deletedRecurringEventEnablers(Id notificationId, IdList recurringEventEnablerIds)
notificationId - the notification Id recurringEventEnablerIds - the Id of the deleted
RecurringEventEnablers mandatory - This method must be implemented.