Interface IssueReceiver
- All Superinterfaces:
OsidReceiver
The issue receiver is the consumer supplied interface for receiving notifications pertaining to new, updated or deleted issues.
-
Method Summary
Modifier and TypeMethodDescriptionvoidblockedIssue(Id notificationId, Id blockingIssueId, Id blockedIssue) The callback for notification of blocked issues.voidchangedIssues(Id notificationId, IdList issueIds) The callback for notification of updated issues.voiddeletedIssues(Id notificationId, IdList issueIds) The callback for notification of deleted issues.voidlinkedIssue(Id notificationId, Id issueId, Id linkedIssueId) The callback for notification of linked issues.voidThe callback for notifications of new issues.voidsubtaskIssues(Id notificationId, IdList subtaskIssueIds) The callback for notification of subtask issues.voidunblockedIssue(Id notificationId, Id blockingIssueId, Id blockedIssue) The callback for notification of unblocked issues.voidunlinkedIssue(Id notificationId, Id issueId, Id linkedIssueId) The callback for notification of linked issues.Methods inherited from interface OsidReceiver
down, up
-
Method Details
-
newIssues
-
changedIssues
-
deletedIssues
-
subtaskIssues
-
linkedIssue
-
unlinkedIssue
-
blockedIssue
The callback for notification of blocked issues.- Parameters:
notificationId- the notificationIdblockingIssueId- theIdof the blockingIssueblockedIssue- theIdof the blockedIssue- Compliance:
mandatory- This method must be implemented.
-
unblockedIssue
The callback for notification of unblocked issues.- Parameters:
notificationId- the notificationIdblockingIssueId- theIdof the blockingIssueblockedIssue- theIdof the blockedIssue- Compliance:
mandatory- This method must be implemented.
-