Interface RegistrationRequestReceiver
- All Superinterfaces:
OsidReceiver
The registration request receiver is the consumer supplied interface
for receiving notifications pertaining to new, updated or deleted
RegistrationRequests .
-
Method Summary
Modifier and TypeMethodDescriptionvoidchangedRegistrationRequests(Id notificationId, IdList registrationRequestIds) The callback for notification of updated registration requests.voiddeletedRegistrationRequests(Id notificationId, IdList registrationRequestIds) The callback for notification of deleted registration requests.voidnewRegistrationRequests(Id notificationId, IdList registrationRequestIds) The callback for notifications of new registration requests.Methods inherited from interface OsidReceiver
down, up
-
Method Details
-
newRegistrationRequests
The callback for notifications of new registration requests.- Parameters:
notificationId- the notificationIdregistrationRequestIds- theIdof the newRegistrationRequests- Compliance:
mandatory- This method must be implemented.
-
changedRegistrationRequests
The callback for notification of updated registration requests.- Parameters:
notificationId- the notificationIdregistrationRequestIds- theIdof the updatedRegistrationRequests- Compliance:
mandatory- This method must be implemented.
-
deletedRegistrationRequests
The callback for notification of deleted registration requests.- Parameters:
notificationId- the notificationIdregistrationRequestIds- theIdof the deletedRegistrationRequests- Compliance:
mandatory- This method must be implemented.
-