Interface OfferingConstrainerReceiver
- All Superinterfaces:
OsidReceiver
The offering constrainer receiver is the consumer supplied interface for receiving notifications pertaining to new, updated or deleted offering constrainers.
-
Method Summary
Modifier and TypeMethodDescriptionvoidchangedOfferingConstrainers(Id notificationId, IdList offeringConstrainerIds) The callback for notification of updated offering constrainers.voiddeletedOfferingConstrainers(Id notificationId, IdList offeringConstrainerIds) The callback for notification of deleted offering constrainers.voidnewOfferingConstrainers(Id notificationId, IdList offeringConstrainerIds) The callback for notifications of new offering constrainers.Methods inherited from interface OsidReceiver
down, up
-
Method Details
-
newOfferingConstrainers
The callback for notifications of new offering constrainers.- Parameters:
notificationId- the notification IdofferingConstrainerIds- theIdsof the newOfferingConstrainers- Compliance:
mandatory- This method must be implemented.
-
changedOfferingConstrainers
The callback for notification of updated offering constrainers.- Parameters:
notificationId- the notification IdofferingConstrainerIds- theIdsof the updatedOfferingConstrainers- Compliance:
mandatory- This method must be implemented.
-
deletedOfferingConstrainers
The callback for notification of deleted offering constrainers.- Parameters:
notificationId- the notification IdofferingConstrainerIds- theIdsof the deletedOfferingConstrainers- Compliance:
mandatory- This method must be implemented.
-