Interface DemographicEnablerReceiver

All Superinterfaces:
OsidReceiver

public interface DemographicEnablerReceiver extends OsidReceiver

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

  • Method Summary

    Modifier and Type
    Method
    Description
    void
    changedDemographicEnablers(Id notificationId, IdList demographicEnablerIds)
    The callback for notification of updated demographic enablers.
    void
    deletedDemographicEnablers(Id notificationId, IdList demographicEnablerIds)
    The callback for notification of deleted demographic enablers.
    void
    newDemographicEnablers(Id notificationId, IdList demographicEnablerIds)
    The callback for notifications of new demographic 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

    • newDemographicEnablers

      void newDemographicEnablers(Id notificationId, IdList demographicEnablerIds)
      The callback for notifications of new demographic enablers.
      Parameters:
      notificationId - the notification Id
      demographicEnablerIds - the Ids of the new DemographicEnablers
      Compliance:
      mandatory - This method must be implemented.
    • changedDemographicEnablers

      void changedDemographicEnablers(Id notificationId, IdList demographicEnablerIds)
      The callback for notification of updated demographic enablers.
      Parameters:
      notificationId - the notification Id
      demographicEnablerIds - the Ids of the updated DemographicEnablers
      Compliance:
      mandatory - This method must be implemented.
    • deletedDemographicEnablers

      void deletedDemographicEnablers(Id notificationId, IdList demographicEnablerIds)
      The callback for notification of deleted demographic enablers.
      Parameters:
      notificationId - the notification Id
      demographicEnablerIds - the Ids of the deleted DemographicEnablers
      Compliance:
      mandatory - This method must be implemented.