Interface ManagedIssueTypesService
- All Known Implementing Classes:
ManagedIssueTypesServiceImpl
@PublicApi
public interface ManagedIssueTypesService
This service exposes issue types managed by JIRA Agile.
Note: Under normal circumstances all methods should return a valid outcome. A successful result is not guaranteed though, so always check the outcome for errors first.
- Since:
- 6.3.5
-
Method Summary
Modifier and TypeMethodDescriptioncom.atlassian.jira.bc.ServiceOutcome
<com.atlassian.jira.issue.issuetype.IssueType> Get the default epic issue type.com.atlassian.jira.bc.ServiceOutcome
<com.atlassian.jira.issue.issuetype.IssueType> Get the default story issue type.
-
Method Details
-
getStoryIssueType
com.atlassian.jira.bc.ServiceOutcome<com.atlassian.jira.issue.issuetype.IssueType> getStoryIssueType()Get the default story issue type. -
getEpicIssueType
com.atlassian.jira.bc.ServiceOutcome<com.atlassian.jira.issue.issuetype.IssueType> getEpicIssueType()Get the default epic issue type.
-