public interface AuctionConstrainerReceiver extends OsidReceiver
The auction constrainer receiver is the consumer supplied interface for receiving notifications pertaining to new, updated or deleted auction constrainers.
| Modifier and Type | Method and Description |
|---|---|
void |
changedAuctionConstrainers(Id notificationId,
IdList auctionConstrainerIds)
The callback for notification of updated auction constrainers.
|
void |
deletedAuctionConstrainers(Id notificationId,
IdList auctionConstrainerIds)
The callback for notification of deleted auction constrainers.
|
void |
newAuctionConstrainers(Id notificationId,
IdList auctionConstrainerIds)
The callback for notifications of new auction constrainers.
|
down, upvoid newAuctionConstrainers(Id notificationId, IdList auctionConstrainerIds)
notificationId - the notification Id auctionConstrainerIds - the Id of the new
AuctionConstrainers mandatory - This method must be implemented. void changedAuctionConstrainers(Id notificationId, IdList auctionConstrainerIds)
notificationId - the notification Id auctionConstrainerIds - the Id of the updated
AuctionConstrainers mandatory - This method must be implemented. void deletedAuctionConstrainers(Id notificationId, IdList auctionConstrainerIds)
notificationId - the notification Id auctionConstrainerIds - the Id of the deleted
AuctionConstrainers mandatory - This method must be implemented.