@ExperimentalApi
public interface ArchivedIssueSearchService
Modifier and Type | Interface and Description |
---|---|
static class |
ArchivedIssueSearchService.ArchiveSearchRequest |
static class |
ArchivedIssueSearchService.ValidationResult |
Modifier and Type | Method and Description |
---|---|
List<Issue> |
getArchivedIssuesMatchingTypesInProjects(List<Long> projectIds,
List<String> issueTypeIds)
For the projects specified by
projectIds , finds archived issues that are of the types given by
issueTypIds . |
java.util.stream.Stream<ArchivedIssue> |
search(ArchivedIssueSearchService.ValidationResult validationResult)
Search for issues in archive using given criteria.
|
ArchivedIssueSearchService.ValidationResult |
validateSearch(ArchivedIssueSearchService.ArchiveSearchRequest request)
Validate search request
|
List<Issue> getArchivedIssuesMatchingTypesInProjects(List<Long> projectIds, List<String> issueTypeIds)
projectIds
, finds archived issues that are of the types given by
issueTypIds
.
TO be removed after implementation of searching/browsing archived projects by using it's API insteadprojectIds
- unique identifiers for the projects whose issues we'd like to inspect.issueTypeIds
- unique identifiers for the issue types that we're looking for instances of in the projects.issueTypeIds
ArchivedIssueSearchService.ValidationResult validateSearch(ArchivedIssueSearchService.ArchiveSearchRequest request)
request
- search requestjava.util.stream.Stream<ArchivedIssue> search(ArchivedIssueSearchService.ValidationResult validationResult)
validationResult
- of search in serviceCopyright © 2002-2019 Atlassian. All Rights Reserved.