Interface InquiryReceiver

All Superinterfaces:
OsidReceiver

public interface InquiryReceiver extends OsidReceiver

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

  • Method Summary

    Modifier and Type
    Method
    Description
    void
    changedInquiries(Id notificationId, IdList inquiryIds)
    The callback for notification of updated inquiries.
    void
    deletedInquiries(Id notificationId, IdList inquiryIds)
    The callback for notification of deleted inquiries.
    void
    newInquiries(Id notificationId, IdList inquiryIds)
    The callback for notifications of new inquiries.

    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

    • newInquiries

      void newInquiries(Id notificationId, IdList inquiryIds)
      The callback for notifications of new inquiries.
      Parameters:
      notificationId - the notification Id
      inquiryIds - the Ids of the new Inquiries
      Compliance:
      mandatory - This method must be implemented.
    • changedInquiries

      void changedInquiries(Id notificationId, IdList inquiryIds)
      The callback for notification of updated inquiries.
      Parameters:
      notificationId - the notification Id
      inquiryIds - the Ids of the updated Inquiries
      Compliance:
      mandatory - This method must be implemented.
    • deletedInquiries

      void deletedInquiries(Id notificationId, IdList inquiryIds)
      The callback for notification of deleted inquiries.
      Parameters:
      notificationId - the notification Id
      inquiryIds - the Ids of the deleted Inquiries
      Compliance:
      mandatory - This method must be implemented.