Interface IssuePickerSearchService
- All Known Implementing Classes:
DefaultIssuePickerSearchService
@PublicApi
public interface IssuePickerSearchService
Service that is used to get a list of
Issue
for the Issue Picker.
This uses IssuePickerSearchProvider
s to get Issues.-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic class
Class for passing around IssuePicker parameters. -
Method Summary
Modifier and TypeMethodDescriptiongetResults
(JiraServiceContext context, IssuePickerSearchService.IssuePickerParameters issuePickerParams) Gets a list ofIssue
based on query string.
-
Method Details
-
getResults
Collection<IssuePickerResults> getResults(JiraServiceContext context, IssuePickerSearchService.IssuePickerParameters issuePickerParams) Gets a list ofIssue
based on query string. Limited by maxIssueCount.- Parameters:
context
- Jira Service ContextissuePickerParams
- params for picking issues- Returns:
- Collection of
Issue
matching search criteria. These can be any type of issues. This collection is never nulll.
-