Interface RegistrationTargetReceiver
- All Superinterfaces:
OsidReceiver
The registration target receiver is the consumer supplied interface for
receiving notifications pertaining to new, updated or deleted
RegistrationTarget objects.
-
Method Summary
Modifier and TypeMethodDescriptionvoidchangedRegistrationTargets(Id notificationId, IdList registrationTargetIds) The callback for notification of updated registration targets.voiddeletedRegistrationTargets(Id notificationId, IdList registrationTargetIds) The callback for notification of deleted registration targets.voidnewRegistrationTargets(Id notificationId, IdList registrationTargetIds) The callback for notifications of new registration targets.Methods inherited from interface OsidReceiver
down, up
-
Method Details
-
newRegistrationTargets
The callback for notifications of new registration targets.- Parameters:
notificationId- the notificationIdregistrationTargetIds- theIdof the newRegistrationTargets- Compliance:
mandatory- This method must be implemented.
-
changedRegistrationTargets
The callback for notification of updated registration targets.- Parameters:
notificationId- the notificationIdregistrationTargetIds- theIdof the updatedRegistrationTargets- Compliance:
mandatory- This method must be implemented.
-
deletedRegistrationTargets
The callback for notification of deleted registration targets.- Parameters:
notificationId- the notificationIdregistrationTargetIds- theIdof the deletedRegistrationTargets- Compliance:
mandatory- This method must be implemented.
-