Interface ActivityRegistrationReceiver
- All Superinterfaces:
OsidReceiver
The activity registration receiver is the consumer supplied interface
for receiving notifications pertaining to new, updated or deleted
ActivityRegistration objects.
-
Method Summary
Modifier and TypeMethodDescriptionvoidchangedActivityRegistrations(Id notificationId, IdList activityRegistrationIds) The callback for notification of updated activity registrations.voiddeletedActivityRegistrations(Id notificationId, IdList activityRegistrationIds) the callback for notification of deleted activity registrations.voidnewActivityRegistrations(Id notificationId, IdList activityRegistrationIds) The callback for notifications of new activity registrations.Methods inherited from interface OsidReceiver
down, up
-
Method Details
-
newActivityRegistrations
The callback for notifications of new activity registrations.- Parameters:
notificationId- the notificationIdactivityRegistrationIds- theIdsof the newActivityRegistrations- Compliance:
mandatory- This method must be implemented.
-
changedActivityRegistrations
The callback for notification of updated activity registrations.- Parameters:
notificationId- the notificationIdactivityRegistrationIds- theIdsof the updatedActivityRegistrations- Compliance:
mandatory- This method must be implemented.
-
deletedActivityRegistrations
the callback for notification of deleted activity registrations.- Parameters:
notificationId- the notificationIdactivityRegistrationIds- theIdsof the deletedActivityRegistrations- Compliance:
mandatory- This method must be implemented.
-