Interface AuctionConstrainerEnablerReceiver

All Superinterfaces:
OsidReceiver

public interface AuctionConstrainerEnablerReceiver extends OsidReceiver

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

  • Method Summary

    Modifier and Type
    Method
    Description
    void
    changedAuctionConstrainerEnablers(Id notificationId, IdList auctionConstrainerEnablerIds)
    The callback for notification of updated auction constrainer enablers.
    void
    deletedAuctionConstrainerEnablers(Id notificationId, IdList auctionConstrainerEnablerIds)
    The callback for notification of deleted auction constrainer enablers.
    void
    newAuctionConstrainerEnablers(Id notificationId, IdList auctionConstrainerEnablerIds)
    The callback for notifications of new auction constrainer 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

    • newAuctionConstrainerEnablers

      void newAuctionConstrainerEnablers(Id notificationId, IdList auctionConstrainerEnablerIds)
      The callback for notifications of new auction constrainer enablers.
      Parameters:
      notificationId - the notification Id
      auctionConstrainerEnablerIds - the Id of the new AuctionConstrainerEnablers
      Compliance:
      mandatory - This method must be implemented.
    • changedAuctionConstrainerEnablers

      void changedAuctionConstrainerEnablers(Id notificationId, IdList auctionConstrainerEnablerIds)
      The callback for notification of updated auction constrainer enablers.
      Parameters:
      notificationId - the notification Id
      auctionConstrainerEnablerIds - the Id of the updated AuctionConstrainerEnablers
      Compliance:
      mandatory - This method must be implemented.
    • deletedAuctionConstrainerEnablers

      void deletedAuctionConstrainerEnablers(Id notificationId, IdList auctionConstrainerEnablerIds)
      The callback for notification of deleted auction constrainer enablers.
      Parameters:
      notificationId - the notification Id
      auctionConstrainerEnablerIds - the Id of the deleted AuctionConstrainerEnablers
      Compliance:
      mandatory - This method must be implemented.