Interface CatalogEntryReceiver

All Superinterfaces:
OsidReceiver

public interface CatalogEntryReceiver extends OsidReceiver

The catalog receiver is the consumer supplied interface for receiving notifications pertaining to new, updated or deleted Ids in Catalogs .

  • Method Summary

    Modifier and Type
    Method
    Description
    void
    deletedCatalogEntries(Id notificationId, IdList entryIds)
    the callback for notification of deleted catalog entries.
    void
    newCatalogEntries(Id notificationId, IdList entryIds)
    The callback for notifications of new catalogs 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

    • newCatalogEntries

      void newCatalogEntries(Id notificationId, IdList entryIds)
      The callback for notifications of new catalogs entries.
      Parameters:
      notificationId - the notification Id
      entryIds - the Ids of the new entries
      Compliance:
      mandatory - This method must be implemented.
    • deletedCatalogEntries

      void deletedCatalogEntries(Id notificationId, IdList entryIds)
      the callback for notification of deleted catalog entries.
      Parameters:
      notificationId - the notification Id
      entryIds - the Ids of the deleted entries
      Compliance:
      mandatory - This method must be implemented.