public interface SupersedingEventReceiver extends OsidReceiver
The superseding event receiver is the consumer supplied interface for
receiving notifications pertaining to new, updated or deleted
SupersedingEvents.
| Modifier and Type | Method and Description |
|---|---|
void |
changedSupersedingEvents(Id notificationId,
IdList supersedingEventIds)
The callback for notification of updated superseding events.
|
void |
deletedSupersedingEvents(Id notificationId,
IdList supersedingEventIds)
The callback for notification of deleted superseding events.
|
void |
newSupersedingEvents(Id notificationId,
IdList supersedingEventIds)
The callback for notifications of new superseding events.
|
down, upvoid newSupersedingEvents(Id notificationId, IdList supersedingEventIds)
notificationId - the notification Id supersedingEventIds - the Ids of the new
SupersedingEvents mandatory - This method must be implemented. void changedSupersedingEvents(Id notificationId, IdList supersedingEventIds)
notificationId - the notification Id supersedingEventIds - the Ids of the updated
SupersedingEvents mandatory - This method must be implemented. void deletedSupersedingEvents(Id notificationId, IdList supersedingEventIds)
notificationId - the notification Id supersedingEventIds - the Ids of the deleted
SupersedingEvents mandatory - This method must be implemented.