public interface AuctionProcessorReceiver extends OsidReceiver
The auction processor receiver is the consumer supplied interface for receiving notifications pertaining to new, updated or deleted auction processors.
| Modifier and Type | Method and Description |
|---|---|
void |
changedAuctionProcessors(Id notificationId,
IdList auctionProcessorIds)
The callback for notification of updated auction processors.
|
void |
deletedAuctionProcessors(Id notificationId,
IdList auctionProcessorIds)
The callback for notification of deleted auction processors.
|
void |
newAuctionProcessors(Id notificationId,
IdList auctionProcessorIds)
The callback for notifications of new auction processors.
|
down, upvoid newAuctionProcessors(Id notificationId, IdList auctionProcessorIds)
notificationId - the notification Id auctionProcessorIds - the Id of the new
AuctionProcessors mandatory - This method must be implemented. void changedAuctionProcessors(Id notificationId, IdList auctionProcessorIds)
notificationId - the notification Id auctionProcessorIds - the Id of the updated
AuctionProcessors mandatory - This method must be implemented. void deletedAuctionProcessors(Id notificationId, IdList auctionProcessorIds)
notificationId - the notification Id auctionProcessorIds - the Id of the deleted
AuctionProcessors mandatory - This method must be implemented.