Interface LinkedJiraIssue
-
- All Superinterfaces:
BambooIdProvider
,BambooObject
,Comparable<LinkedJiraIssue>
,InternalLinkedJiraIssue
- All Known Implementing Classes:
LinkedJiraIssueImpl
@PublicApi public interface LinkedJiraIssue extends InternalLinkedJiraIssue, BambooObject, Comparable<LinkedJiraIssue>
A JIRA issue and how it is linked to the corresponding build result summary
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ResultsSummary
getResultsSummary()
GetResultsSummary
to which thisLinkedJiraIssue
applies (DB field)void
setIssueKey(String issueKey)
Set JIRA issue keyvoid
setIssueType(JiraIssueLinkType issueLinkType)
Set how build relates to JIRA issuevoid
setResultsSummary(ResultsSummary resultsSummary)
SetResultsSummary
to which thisLinkedJiraIssue
applies (DB field)-
Methods inherited from interface com.atlassian.bamboo.core.BambooIdProvider
getId
-
Methods inherited from interface com.atlassian.bamboo.core.BambooObject
setId
-
Methods inherited from interface java.lang.Comparable
compareTo
-
Methods inherited from interface com.atlassian.bamboo.jira.jiraissues.InternalLinkedJiraIssue
getIssueKey, getIssueType, getJiraIssueDetails, setJiraIssueDetails
-
-
-
-
Method Detail
-
setIssueKey
void setIssueKey(String issueKey)
Set JIRA issue key- Parameters:
issueKey
- JIRA issue key
-
setIssueType
void setIssueType(JiraIssueLinkType issueLinkType)
Set how build relates to JIRA issue- Parameters:
issueLinkType
- defines how build relates to JIRA issue
-
getResultsSummary
ResultsSummary getResultsSummary()
GetResultsSummary
to which thisLinkedJiraIssue
applies (DB field)- Returns:
ResultsSummary
object
-
setResultsSummary
void setResultsSummary(ResultsSummary resultsSummary)
SetResultsSummary
to which thisLinkedJiraIssue
applies (DB field)- Parameters:
resultsSummary
-ResultsSummary
object
-
-