Interface EntryReceiver

All Superinterfaces:
OsidReceiver

public interface EntryReceiver extends OsidReceiver

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

  • Method Summary

    Modifier and Type
    Method
    Description
    void
    changedEntry(Id notificationId, Id entryId)
    The callback for notification of updated entries.
    void
    deletedEntry(Id notificationId, Id entryId)
    the callback for notification of deleted entries.
    void
    newEntry(Id notificationId, Id entryId)
    The callback for notifications of new entries.

    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

    • newEntry

      void newEntry(Id notificationId, Id entryId)
      The callback for notifications of new entries.
      Parameters:
      notificationId - the notification Id
      entryId - the Id of the new Entry
      Compliance:
      mandatory - This method must be implemented.
    • changedEntry

      void changedEntry(Id notificationId, Id entryId)
      The callback for notification of updated entries.
      Parameters:
      notificationId - the notification Id
      entryId - the Id of the updated Entry
      Compliance:
      mandatory - This method must be implemented.
    • deletedEntry

      void deletedEntry(Id notificationId, Id entryId)
      the callback for notification of deleted entries.
      Parameters:
      notificationId - the notification Id
      entryId - the Id of the deleted Entry
      Compliance:
      mandatory - This method must be implemented.