Interface JasperReportCompiler
-
- All Known Implementing Classes:
DefaultJasperReportCompiler
@Deprecated public interface JasperReportCompiler
Deprecated.as of release 4.3, please useJasperReportCompileService
andJasperReportFillService
Compiler for reports.- Spring Bean ID:
- jasperReportCompiler
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description net.sf.jasperreports.engine.JasperReport
compileReport(JasperWidgetPreferencesModel configuration)
Deprecated.as of release 4.3, please useJasperReportCompileService.compileReport(de.hybris.platform.cockpit.reports.model.JasperMediaModel)
Compiles report from its configuration.net.sf.jasperreports.engine.JasperPrint
fillReport(net.sf.jasperreports.engine.JasperReport report, JasperWidgetPreferencesModel configuration)
Deprecated.as of release 4.3, please useJasperReportFillService.fillReport(JasperReport, JasperWidgetPreferencesModel)
Fills report from its compiled version and its configuration.
-
-
-
Method Detail
-
compileReport
@Deprecated net.sf.jasperreports.engine.JasperReport compileReport(JasperWidgetPreferencesModel configuration)
Deprecated.as of release 4.3, please useJasperReportCompileService.compileReport(de.hybris.platform.cockpit.reports.model.JasperMediaModel)
Compiles report from its configuration.- Parameters:
configuration
- for which report is compiled.
-
fillReport
@Deprecated net.sf.jasperreports.engine.JasperPrint fillReport(net.sf.jasperreports.engine.JasperReport report, JasperWidgetPreferencesModel configuration)
Deprecated.as of release 4.3, please useJasperReportFillService.fillReport(JasperReport, JasperWidgetPreferencesModel)
Fills report from its compiled version and its configuration.- Parameters:
configuration
- for which report is filled.report
- compiled report to be filled.
-
-