Interface BrokerConstrainerEnablerReceiver

All Superinterfaces:
OsidReceiver

public interface BrokerConstrainerEnablerReceiver extends OsidReceiver

The broker receiver is the consumer supplied interface for receiving notifications pertaining to new, updated or deleted BrokerConstrainerEnablers .

  • Method Summary

    Modifier and Type
    Method
    Description
    void
    changedBrokerConstrainerEnablers(Id notificationId, IdList brokerConstrainerEnablerIds)
    The callback for notification of updated broker constrainer enablers.
    void
    deletedBrokerConstrainerEnablers(Id notificationId, IdList brokerConstrainerEnablerIds)
    The callback for notification of deleted broker constrainer enablers.
    void
    newBrokerConstrainerEnablers(Id notificationId, IdList brokerConstrainerEnablerIds)
    The callback for notifications of new broker 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

    • newBrokerConstrainerEnablers

      void newBrokerConstrainerEnablers(Id notificationId, IdList brokerConstrainerEnablerIds)
      The callback for notifications of new broker constrainer enablers.
      Parameters:
      notificationId - the notification Id
      brokerConstrainerEnablerIds - the Id of the new BrokerConstrainerEnablers
      Compliance:
      mandatory - This method must be implemented.
    • changedBrokerConstrainerEnablers

      void changedBrokerConstrainerEnablers(Id notificationId, IdList brokerConstrainerEnablerIds)
      The callback for notification of updated broker constrainer enablers.
      Parameters:
      notificationId - the notification Id
      brokerConstrainerEnablerIds - the Id of the updated BrokerConstrainerEnablers
      Compliance:
      mandatory - This method must be implemented.
    • deletedBrokerConstrainerEnablers

      void deletedBrokerConstrainerEnablers(Id notificationId, IdList brokerConstrainerEnablerIds)
      The callback for notification of deleted broker constrainer enablers.
      Parameters:
      notificationId - the notification Id
      brokerConstrainerEnablerIds - the Id of the deleted BrokerConstrainerEnablers
      Compliance:
      mandatory - This method must be implemented.