Interface QualifierReceiver

All Superinterfaces:
OsidReceiver

public interface QualifierReceiver extends OsidReceiver

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

  • Method Summary

    Modifier and Type
    Method
    Description
    void
    changedChildOfQualifiers(Id notificationId, IdList qualifierIds)
    The callback for notifications of changes to children of qualifier hierarchy nodes.
    void
    changedQualifiers(Id notificationId, IdList qualifierIds)
    The callback for notification of updated qualifiers.
    void
    deletedQualifiers(Id notificationId, IdList qualifierIds)
    the callback for notification of deleted qualifiers.
    void
    newQualifiers(Id notificationId, IdList qualifierIds)
    The callback for notifications of new qualifiers.

    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

    • newQualifiers

      void newQualifiers(Id notificationId, IdList qualifierIds)
      The callback for notifications of new qualifiers.
      Parameters:
      notificationId - the notification Id
      qualifierIds - the Id of the new Qualifiers
      Compliance:
      mandatory - This method must be implemented.
    • changedQualifiers

      void changedQualifiers(Id notificationId, IdList qualifierIds)
      The callback for notification of updated qualifiers.
      Parameters:
      notificationId - the notification Id
      qualifierIds - the Id of the updated Qualifiers
      Compliance:
      mandatory - This method must be implemented.
    • deletedQualifiers

      void deletedQualifiers(Id notificationId, IdList qualifierIds)
      the callback for notification of deleted qualifiers.
      Parameters:
      notificationId - the notification Id
      qualifierIds - the Id of the deleted Qualifiers
      Compliance:
      mandatory - This method must be implemented.
    • changedChildOfQualifiers

      void changedChildOfQualifiers(Id notificationId, IdList qualifierIds)
      The callback for notifications of changes to children of qualifier hierarchy nodes.
      Parameters:
      notificationId - the notification Id
      qualifierIds - the Ids of the Qualifiers whose children have changed
      Compliance:
      mandatory - This method must be implemented.