Interface IssueConstrainerEnablerReceiver

All Superinterfaces:
OsidReceiver

public interface IssueConstrainerEnablerReceiver extends OsidReceiver

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

  • Method Summary

    Modifier and Type
    Method
    Description
    void
    changedIssueConstrainerEnablers(Id notificationId, IdList issueConstrainerEnablerIds)
    The callback for notification of updated issue constrainer enablers.
    void
    deletedIssueConstrainerEnablers(Id notificationId, IdList issueConstrainerEnablerIds)
    The callback for notification of deleted issue constrainer enablers.
    void
    newIssueConstrainerEnablers(Id notificationId, IdList issueConstrainerEnablerIds)
    The callback for notifications of new issue constrainer 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

    • newIssueConstrainerEnablers

      void newIssueConstrainerEnablers(Id notificationId, IdList issueConstrainerEnablerIds)
      The callback for notifications of new issue constrainer enablers.
      Parameters:
      notificationId - the notification Id
      issueConstrainerEnablerIds - the Id of the new IssueConstrainerEnablers
      Compliance:
      mandatory - This method must be implemented.
    • changedIssueConstrainerEnablers

      void changedIssueConstrainerEnablers(Id notificationId, IdList issueConstrainerEnablerIds)
      The callback for notification of updated issue constrainer enablers.
      Parameters:
      notificationId - the notification Id
      issueConstrainerEnablerIds - the Id of the updated IssueConstrainerEnablers
      Compliance:
      mandatory - This method must be implemented.
    • deletedIssueConstrainerEnablers

      void deletedIssueConstrainerEnablers(Id notificationId, IdList issueConstrainerEnablerIds)
      The callback for notification of deleted issue constrainer enablers.
      Parameters:
      notificationId - the notification Id
      issueConstrainerEnablerIds - the Id of the deleted IssueConstrainerEnablers
      Compliance:
      mandatory - This method must be implemented.