Class IssuePickerSearchService.IssuePickerParameters

java.lang.Object
com.atlassian.jira.bc.issue.search.IssuePickerSearchService.IssuePickerParameters
Enclosing interface:
IssuePickerSearchService

@PublicApi public static class IssuePickerSearchService.IssuePickerParameters extends Object
Class for passing around IssuePicker parameters.
  • Constructor Details

    • IssuePickerParameters

      public IssuePickerParameters(String query, String currentJQL, Issue currentIssue, Project currentProject, boolean showSubTasks, boolean showSubTaskParent, int limit)
      Constructor that takes all parameters
      Parameters:
      query - the query that was inputed
      currentJQL - the current JQL
      currentIssue - the current issue
      currentProject - the current project
      showSubTasks - whether or not to show sub-tasks
      showSubTaskParent - whether or not to show parent
      limit - how many items to display
  • Method Details

    • getQuery

      public String getQuery()
    • getCurrentJQL

      public String getCurrentJQL()
    • getCurrentIssue

      public Issue getCurrentIssue()
    • getCurrentProject

      public Project getCurrentProject()
    • showSubTasks

      public boolean showSubTasks()
    • showSubTaskParent

      public boolean showSubTaskParent()
    • getLimit

      public int getLimit()