Interface AuctionProcessorEnablerReceiver

All Superinterfaces:
OsidReceiver

public interface AuctionProcessorEnablerReceiver extends OsidReceiver

The auction processor enabler receiver is the consumer supplied interface for receiving notifications pertaining to new, updated or deleted auction processor enablers.

  • Method Summary

    Modifier and Type
    Method
    Description
    void
    changedAuctionProcessorEnablers(Id notificationId, IdList auctionProcessorEnablerIds)
    The callback for notification of updated auction processor enablers.
    void
    deletedAuctionProcessorEnablers(Id notificationId, IdList auctionProcessorEnablerIds)
    The callback for notification of deleted auction processor enablers.
    void
    newAuctionProcessorEnablers(Id notificationId, IdList auctionProcessorEnablerIds)
    The callback for notifications of new auction processor enablers.

    Methods inherited from interface OsidReceiver

    down, up
    Modifier and Type
    Method
    Description
    void
    The callback for notifications that the notification bus is not operating.
    void
    up()
    The callback for notifications that the notification bus is operational.
  • Method Details

    • newAuctionProcessorEnablers

      void newAuctionProcessorEnablers(Id notificationId, IdList auctionProcessorEnablerIds)
      The callback for notifications of new auction processor enablers.
      Parameters:
      notificationId - the notification Id
      auctionProcessorEnablerIds - the Id of the new AuctionProcessorEnablers
      Compliance:
      mandatory - This method must be implemented.
    • changedAuctionProcessorEnablers

      void changedAuctionProcessorEnablers(Id notificationId, IdList auctionProcessorEnablerIds)
      The callback for notification of updated auction processor enablers.
      Parameters:
      notificationId - the notification Id
      auctionProcessorEnablerIds - the Id of the updated AuctionProcessorEnablers
      Compliance:
      mandatory - This method must be implemented.
    • deletedAuctionProcessorEnablers

      void deletedAuctionProcessorEnablers(Id notificationId, IdList auctionProcessorEnablerIds)
      The callback for notification of deleted auction processor enablers.
      Parameters:
      notificationId - the notification Id
      auctionProcessorEnablerIds - the Id of the deleted AuctionProcessorEnablers
      Compliance:
      mandatory - This method must be implemented.