public interface ActivityRegistrationReceiver extends OsidReceiver
The activity registration receiver is the consumer supplied interface
for receiving notifications pertaining to new, updated or deleted
ActivityRegistration objects.
| Modifier and Type | Method and Description |
|---|---|
void |
changedActivityRegistrations(Id notificationId,
IdList activityRegistrationIds)
The callback for notification of updated activity registrations.
|
void |
deletedActivityRegistrations(Id notificationId,
IdList activityRegistrationIds)
the callback for notification of deleted activity registrations.
|
void |
newActivityRegistrations(Id notificationId,
IdList activityRegistrationIds)
The callback for notifications of new activity registrations.
|
down, upvoid newActivityRegistrations(Id notificationId, IdList activityRegistrationIds)
notificationId - the notification Id activityRegistrationIds - the Ids of the new
ActivityRegistrations mandatory - This method must be implemented. void changedActivityRegistrations(Id notificationId, IdList activityRegistrationIds)
notificationId - the notification Id activityRegistrationIds - the Ids of the updated
ActivityRegistrations mandatory - This method must be implemented. void deletedActivityRegistrations(Id notificationId, IdList activityRegistrationIds)
notificationId - the notification Id activityRegistrationIds - the Ids of the deleted
ActivityRegistrations mandatory - This method must be implemented.