Interface ProfileEntryEnablerReceiver

All Superinterfaces:
OsidReceiver

public interface ProfileEntryEnablerReceiver extends OsidReceiver

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

  • Method Summary

    Modifier and Type
    Method
    Description
    void
    changedProfileEntryEnablers(Id notificationId, IdList profileEntryEnablerIds)
    The callback for notification of updated profile entry enablers.
    void
    deletedProfileEntryEnablers(Id notificationId, IdList profileEntryEnablerIds)
    The callback for notification of deleted profile entry enablers.
    void
    newProfileEntryEnablers(Id notificationId, IdList profileEntryEnablerIds)
    The callback for notifications of new profile entry 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

    • newProfileEntryEnablers

      void newProfileEntryEnablers(Id notificationId, IdList profileEntryEnablerIds)
      The callback for notifications of new profile entry enablers.
      Parameters:
      notificationId - the notification Id
      profileEntryEnablerIds - the Ids of the new ProfileEntryEnablers
      Compliance:
      mandatory - This method must be implemented.
    • changedProfileEntryEnablers

      void changedProfileEntryEnablers(Id notificationId, IdList profileEntryEnablerIds)
      The callback for notification of updated profile entry enablers.
      Parameters:
      notificationId - the notification Id
      profileEntryEnablerIds - the Ids of the updated ProfileEntryEnablers
      Compliance:
      mandatory - This method must be implemented.
    • deletedProfileEntryEnablers

      void deletedProfileEntryEnablers(Id notificationId, IdList profileEntryEnablerIds)
      The callback for notification of deleted profile entry enablers.
      Parameters:
      notificationId - the notification Id
      profileEntryEnablerIds - the Ids of the deleted ProfileEntryEnablers
      Compliance:
      mandatory - This method must be implemented.