Interface PayerReceiver

All Superinterfaces:
OsidReceiver

public interface PayerReceiver extends OsidReceiver

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

  • Method Summary

    Modifier and Type
    Method
    Description
    void
    changedPayers(Id notificationId, IdList payerIds)
    The callback for notification of updated payers.
    void
    deletedPayers(Id notificationId, IdList payerIds)
    the callback for notification of deleted payers.
    void
    newPayers(Id notificationId, IdList payerIds)
    The callback for notifications of new payers.

    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

    • newPayers

      void newPayers(Id notificationId, IdList payerIds)
      The callback for notifications of new payers.
      Parameters:
      notificationId - the notification Id
      payerIds - the Id of the new Payers
      Compliance:
      mandatory - This method must be implemented.
    • changedPayers

      void changedPayers(Id notificationId, IdList payerIds)
      The callback for notification of updated payers.
      Parameters:
      notificationId - the notification Id
      payerIds - the Id of the updated Payers
      Compliance:
      mandatory - This method must be implemented.
    • deletedPayers

      void deletedPayers(Id notificationId, IdList payerIds)
      the callback for notification of deleted payers.
      Parameters:
      notificationId - the notification Id
      payerIds - the Id of the deleted Payers
      Compliance:
      mandatory - This method must be implemented.