Interface InquiryEnablerReceiver

All Superinterfaces:
OsidReceiver

public interface InquiryEnablerReceiver extends OsidReceiver

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

  • Method Summary

    Modifier and Type
    Method
    Description
    void
    changedInquiryEnablers(Id notificationId, IdList inquiryEnablerIds)
    The callback for notification of updated inquiry enablers.
    void
    deletedInquiryEnablers(Id notificationId, IdList inquiryEnablerIds)
    The callback for notification of deleted inquiry enablers.
    void
    newInquiryEnablers(Id notificationId, IdList inquiryEnablerIds)
    The callback for notifications of new inquiry 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

    • newInquiryEnablers

      void newInquiryEnablers(Id notificationId, IdList inquiryEnablerIds)
      The callback for notifications of new inquiry enablers.
      Parameters:
      notificationId - the notification Id
      inquiryEnablerIds - the Ids of the new InquiryEnablers
      Compliance:
      mandatory - This method must be implemented.
    • changedInquiryEnablers

      void changedInquiryEnablers(Id notificationId, IdList inquiryEnablerIds)
      The callback for notification of updated inquiry enablers.
      Parameters:
      notificationId - the notification Id
      inquiryEnablerIds - the Ids of the updated InquiryEnablers
      Compliance:
      mandatory - This method must be implemented.
    • deletedInquiryEnablers

      void deletedInquiryEnablers(Id notificationId, IdList inquiryEnablerIds)
      The callback for notification of deleted inquiry enablers.
      Parameters:
      notificationId - the notification Id
      inquiryEnablerIds - the Ids of the deleted InquiryEnablers
      Compliance:
      mandatory - This method must be implemented.