Interface ReportLoader
- All Known Implementing Classes:
FileReportLoader,HibernateReportLoader
public interface ReportLoader
Load a generated report from a supported URI.
-
Method Summary
Modifier and TypeMethodDescriptionbooleanReturns true if this loader can process the provided URI.voidloadReport(URI reportURI, OutputStream out) Reads a report from the URI and writes it to the output stream.
-
Method Details
-
accepts
Returns true if this loader can process the provided URI.- Parameters:
reportURI- the uri to test.
-
loadReport
Reads a report from the URI and writes it to the output stream.- Parameters:
reportURI- uri of the report.out- output stream to write to.- Throws:
IOException
-