Class RapidViewIssue

java.lang.Object
com.atlassian.greenhopper.service.issue.RapidViewIssue

@ExperimentalApi public class RapidViewIssue extends Object
An issue which contains fields specific for JIRA Agile.
Since:
v6.7
  • Method Details

    • getIssue

      public com.atlassian.jira.issue.Issue getIssue()
      Returns:
      a JIRA issue object
    • getEpic

      @Nullable public Epic getEpic()
      Returns:
      an epic to which the issue is assigned. It is null when the issue is not assigned to any epic.
    • getSprint

      @Nullable public Sprint getSprint()
      Returns:
      a current sprint to which the issue is assigned. Current sprint can either be in ACTIVE or FEATURE state.
    • getClosedSprints

      public Set<Sprint> getClosedSprints()
      Returns:
      a set of closed sprint to which issue was assigned but was not completed in those sprints.
    • isFlagged

      public boolean isFlagged()
      Returns:
      an information about whether the issue is flagged of not.
    • builder

      public static RapidViewIssue.RapidViewIssueBuilder builder(com.atlassian.jira.issue.Issue issue)