public interface IssueReceiver extends OsidReceiver
The issue receiver is the consumer supplied interface for receiving notifications pertaining to new, updated or deleted issues.
Modifier and Type | Method and Description |
---|---|
void |
blockedIssue(Id blockingIssueId,
Id blockedIssue)
The callback for notification of blocked issues.
|
void |
changedIssues(IdList issueIds)
The callback for notification of updated issues.
|
void |
deletedIssues(IdList issueIds)
The callback for notification of deleted issues.
|
void |
linkedIssue(Id issueId,
Id linkedIssueId)
The callback for notification of linked issues.
|
void |
newIssues(IdList issueIds)
The callback for notifications of new issues.
|
void |
subtaskIssues(IdList subtaskIssueIds)
The callback for notification of subtask issues.
|
void |
unblockedIssue(Id blockingIssueId,
Id blockedIssue)
The callback for notification of unblocked issues.
|
void |
unlinkedIssue(Id issueId,
Id linkedIssueId)
The callback for notification of linked issues.
|
down, up
void newIssues(IdList issueIds)
issueIds
- the Ids
of the new Issues
mandatory
- This method must be implemented. void changedIssues(IdList issueIds)
issueIds
- the Ids
of the updated Issues
mandatory
- This method must be implemented. void deletedIssues(IdList issueIds)
issueIds
- the Ids
of the deleted Issues
mandatory
- This method must be implemented. void subtaskIssues(IdList subtaskIssueIds)
subtaskIssueIds
- the Ids
of the subtasksmandatory
- This method must be implemented. void linkedIssue(Id issueId, Id linkedIssueId)
issueId
- the Id
of the Issue
linkedIssueId
- the Id
of the linked Issue
mandatory
- This method must be implemented. void unlinkedIssue(Id issueId, Id linkedIssueId)
issueId
- the Id
of the Issue
linkedIssueId
- the Id
of the linked Issue
mandatory
- This method must be implemented. void blockedIssue(Id blockingIssueId, Id blockedIssue)
blockingIssueId
- the Id
of the blocking
Issue
blockedIssue
- the Id
of the blocked Issue
mandatory
- This method must be implemented.