Interface AuctionConstrainerReceiver
- All Superinterfaces:
OsidReceiver
The auction constrainer receiver is the consumer supplied interface for receiving notifications pertaining to new, updated or deleted auction constrainers.
-
Method Summary
Modifier and TypeMethodDescriptionvoidchangedAuctionConstrainers(Id notificationId, IdList auctionConstrainerIds) The callback for notification of updated auction constrainers.voiddeletedAuctionConstrainers(Id notificationId, IdList auctionConstrainerIds) The callback for notification of deleted auction constrainers.voidnewAuctionConstrainers(Id notificationId, IdList auctionConstrainerIds) The callback for notifications of new auction constrainers.Methods inherited from interface OsidReceiver
down, up
-
Method Details
-
newAuctionConstrainers
The callback for notifications of new auction constrainers.- Parameters:
notificationId- the notificationIdauctionConstrainerIds- theIdof the newAuctionConstrainers- Compliance:
mandatory- This method must be implemented.
-
changedAuctionConstrainers
The callback for notification of updated auction constrainers.- Parameters:
notificationId- the notificationIdauctionConstrainerIds- theIdof the updatedAuctionConstrainers- Compliance:
mandatory- This method must be implemented.
-
deletedAuctionConstrainers
The callback for notification of deleted auction constrainers.- Parameters:
notificationId- the notificationIdauctionConstrainerIds- theIdof the deletedAuctionConstrainers- Compliance:
mandatory- This method must be implemented.
-