Interface IssueConstrainerReceiver

All Superinterfaces:
OsidReceiver

public interface IssueConstrainerReceiver extends OsidReceiver

The issue constrainer receiver is the consumer supplied interface for receiving notifications pertaining to new, updated or deleted IssueConstrainer objects.

  • Method Summary

    Modifier and Type
    Method
    Description
    void
    changedIssueConstrainers(Id notificationId, IdList issueConstrainerIds)
    The callback for notification of updated issue constrainers.
    void
    deletedIssueConstrainers(Id notificationId, IdList issueConstrainerIds)
    The callback for notification of deleted issue constrainers.
    void
    newIssueConstrainers(Id notificationId, IdList issueConstrainerIds)
    The callback for notifications of new issue constrainers.

    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

    • newIssueConstrainers

      void newIssueConstrainers(Id notificationId, IdList issueConstrainerIds)
      The callback for notifications of new issue constrainers.
      Parameters:
      notificationId - the notification Id
      issueConstrainerIds - the Id of the new IssueConstrainers
      Compliance:
      mandatory - This method must be implemented.
    • changedIssueConstrainers

      void changedIssueConstrainers(Id notificationId, IdList issueConstrainerIds)
      The callback for notification of updated issue constrainers.
      Parameters:
      notificationId - the notification Id
      issueConstrainerIds - the Id of the updated IssueConstrainers
      Compliance:
      mandatory - This method must be implemented.
    • deletedIssueConstrainers

      void deletedIssueConstrainers(Id notificationId, IdList issueConstrainerIds)
      The callback for notification of deleted issue constrainers.
      Parameters:
      notificationId - the notification Id
      issueConstrainerIds - the Id of the deleted IssueConstrainers
      Compliance:
      mandatory - This method must be implemented.