Package com.atlassian.jira.issue.export
Interface IssueExporter
- All Known Subinterfaces:
CsvIssueExporter
- All Known Implementing Classes:
DefaultCsvIssueExporter
public interface IssueExporter
Exporter used to take a list of fields and a search request and export it to a given output.
- Since:
- 7.2.0
-
Method Summary
Modifier and TypeMethodDescriptionvoid
export
(Writer writer, SearchRequest searchRequest, SearchRequestParams searchRequestParams, List<Field> fields) Export the given search and fields and output it to the supplied writer.
-
Method Details
-
export
void export(Writer writer, SearchRequest searchRequest, SearchRequestParams searchRequestParams, List<Field> fields) throws IOException, SearchException Export the given search and fields and output it to the supplied writer.- Parameters:
writer
- to export the output tosearchRequest
- to collect issues forsearchRequestParams
- to provide the context for the searchfields
- to export for these issues- Throws:
IOException
SearchException
-