Interface ContactEnablerReceiver

All Superinterfaces:
OsidReceiver

public interface ContactEnablerReceiver extends OsidReceiver

The contact enabler receiver is the consumer supplied interface for receiving notifications pertaining to new, updated or deleted contact enablers.

  • Method Summary

    Modifier and Type
    Method
    Description
    void
    changedContactEnablers(Id notificationId, IdList contactEnablerIds)
    The callback for notification of updated contact enablers.
    void
    deletedContactEnablers(Id notificationId, IdList contactEnablerIds)
    The callback for notification of deleted contact enablers.
    void
    newContactEnablers(Id notificationId, IdList contactEnablerIds)
    The callback for notifications of new contact enablers.

    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

    • newContactEnablers

      void newContactEnablers(Id notificationId, IdList contactEnablerIds)
      The callback for notifications of new contact enablers.
      Parameters:
      notificationId - the notification Id
      contactEnablerIds - the Ids of the new ContactEnablers
      Compliance:
      mandatory - This method must be implemented.
    • changedContactEnablers

      void changedContactEnablers(Id notificationId, IdList contactEnablerIds)
      The callback for notification of updated contact enablers.
      Parameters:
      notificationId - the notification Id
      contactEnablerIds - the Ids of the updated ContactEnablers
      Compliance:
      mandatory - This method must be implemented.
    • deletedContactEnablers

      void deletedContactEnablers(Id notificationId, IdList contactEnablerIds)
      The callback for notification of deleted contact enablers.
      Parameters:
      notificationId - the notification Id
      contactEnablerIds - the Ids of the deleted ContactEnablers
      Compliance:
      mandatory - This method must be implemented.