public interface IssueTracker
Modifier and Type | Method and Description |
---|---|
void |
addComment(java.lang.String issueKey,
java.lang.String commentText)
Add a new comment to the specified issue in the remote issue tracking system.
|
void |
doTransition(java.lang.String issueKey,
java.lang.String status) |
java.util.List<IssueComment> |
getCommentsFor(java.lang.String issueKey) |
JIRAConnection |
getJiraConnection() |
java.lang.String |
getStatusFor(java.lang.String issueKey) |
void |
updateComment(java.lang.String issueKey,
IssueComment issueComment) |
void addComment(java.lang.String issueKey, java.lang.String commentText) throws IssueTrackerUpdateException
issueKey
- the unique key identifying the issue to be commented.commentText
- text of the comment.IssueTrackerUpdateException
java.util.List<IssueComment> getCommentsFor(java.lang.String issueKey) throws IssueTrackerUpdateException
IssueTrackerUpdateException
void updateComment(java.lang.String issueKey, IssueComment issueComment)
java.lang.String getStatusFor(java.lang.String issueKey) throws IssueTrackerUpdateException
IssueTrackerUpdateException
void doTransition(java.lang.String issueKey, java.lang.String status) throws IssueTrackerUpdateException
IssueTrackerUpdateException
JIRAConnection getJiraConnection()