Package com.gooddata.report
Class ReportService
- java.lang.Object
-
- com.gooddata.AbstractService
-
- com.gooddata.report.ReportService
-
@Deprecated public class ReportService extends AbstractService
Deprecated.useExportServiceService for report export
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class com.gooddata.AbstractService
AbstractService.OutputStreamResponseExtractor
-
-
Field Summary
Fields Modifier and Type Field Description static StringEXPORTING_URIDeprecated.-
Fields inherited from class com.gooddata.AbstractService
mapper, restTemplate
-
-
Constructor Summary
Constructors Constructor Description ReportService(ExportService service, org.springframework.web.client.RestTemplate restTemplate)Deprecated.use ReportService(ExportService, RestTemplate, GoodDataSettings) constructor insteadReportService(ExportService service, org.springframework.web.client.RestTemplate restTemplate, GoodDataSettings settings)Deprecated.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description FutureResult<Void>exportReport(ReportDefinition reportDefinition, ReportExportFormat format, OutputStream output)FutureResult<Void>exportReport(Report report, ReportExportFormat format, OutputStream output)-
Methods inherited from class com.gooddata.AbstractService
extractData
-
-
-
-
Field Detail
-
EXPORTING_URI
@Deprecated public static final String EXPORTING_URI
Deprecated.- See Also:
- Constant Field Values
-
-
Constructor Detail
-
ReportService
public ReportService(ExportService service, org.springframework.web.client.RestTemplate restTemplate, GoodDataSettings settings)
Deprecated.
-
ReportService
@Deprecated public ReportService(ExportService service, org.springframework.web.client.RestTemplate restTemplate)
Deprecated.use ReportService(ExportService, RestTemplate, GoodDataSettings) constructor instead
-
-
Method Detail
-
exportReport
@Deprecated public FutureResult<Void> exportReport(ReportDefinition reportDefinition, ReportExportFormat format, OutputStream output)
Deprecated.Export the given report definition in the given format to the given output stream- Parameters:
reportDefinition- report definitionformat- export formatoutput- target- Returns:
- polling result
- Throws:
NoDataReportException- in case report contains no dataReportException- on error
-
exportReport
@Deprecated public FutureResult<Void> exportReport(Report report, ReportExportFormat format, OutputStream output)
Export the given report in the given format to the given output stream- Parameters:
report- reportformat- export formatoutput- target- Returns:
- polling result
- Throws:
NoDataReportException- in case report contains no dataReportException- on error
-
-