Interface BranchReceiver

All Superinterfaces:
OsidReceiver

public interface BranchReceiver extends OsidReceiver

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

  • Method Summary

    Modifier and Type
    Method
    Description
    void
    changedBranches(Id notificationId, IdList branchIds)
    The callback for notification of updated branches.
    void
    deletedBranches(Id notificationId, IdList branchIds)
    the callback for notification of deleted branches.
    void
    newBranches(Id notificationId, IdList branchIds)
    The callback for notifications of new branches.

    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

    • newBranches

      void newBranches(Id notificationId, IdList branchIds)
      The callback for notifications of new branches.
      Parameters:
      notificationId - the notification Id
      branchIds - the Ids of the new Branches
      Compliance:
      mandatory - This method must be implemented.
    • changedBranches

      void changedBranches(Id notificationId, IdList branchIds)
      The callback for notification of updated branches.
      Parameters:
      notificationId - the notification Id
      branchIds - the Ids of the updated Branches
      Compliance:
      mandatory - This method must be implemented.
    • deletedBranches

      void deletedBranches(Id notificationId, IdList branchIds)
      the callback for notification of deleted branches.
      Parameters:
      notificationId - the notification Id
      branchIds - the Ids of the deleted Branches
      Compliance:
      mandatory - This method must be implemented.