public interface RegistrationReceiver extends OsidReceiver
The registration receiver is the consumer supplied interface for receiving notifications pertaining to new, updated or deleted registration objects.
| Modifier and Type | Method and Description |
|---|---|
void |
changedRegistrations(Id notificationId,
IdList registrationIds)
The callback for notification of updated registrations.
|
void |
deletedRegistrations(Id notificationId,
IdList registrationIds)
The callback for notification of deleted registrations.
|
void |
newRegistrations(Id notificationId,
IdList registrationIds)
The callback for notifications of new registrations.
|
down, upvoid newRegistrations(Id notificationId, IdList registrationIds)
notificationId - the notification Id registrationIds - the Ids of the new
Registrations mandatory - This method must be implemented. void changedRegistrations(Id notificationId, IdList registrationIds)
notificationId - the notification Id registrationIds - the Ids of the updated
Registrations mandatory - This method must be implemented. void deletedRegistrations(Id notificationId, IdList registrationIds)
notificationId - the notification Id registrationIds - the Ids of the deleted
Registrations mandatory - This method must be implemented.