public interface JasperExportHook extends Hook
| Modifier and Type | Method and Description |
|---|---|
void |
afterExport(java.lang.String type,
JRExporter exporter,
JasperReport report,
CompiledRSJasperReport compiledReport,
User user)
Method to be called after the call to the exportReport() method.
|
void |
beforeExport(java.lang.String type,
JRExporter exporter,
JasperReport report,
User user)
Method to be called just before exportReport() method.
|
java.util.Collection<java.lang.String> |
getFormats()
Provides a list of supported export formats.
|
java.util.Collection<java.lang.String> getFormats()
void beforeExport(java.lang.String type,
JRExporter exporter,
JasperReport report,
User user)
type - The type of the exporter.exporter - The JRExporter to operate on.void afterExport(java.lang.String type,
JRExporter exporter,
JasperReport report,
CompiledRSJasperReport compiledReport,
User user)
type - The type of the exporter.exporter - The JRExporter to operate on.