1 | |
package org.kuali.student.common.ui.server.screenreport; |
2 | |
|
3 | |
import java.util.List; |
4 | |
|
5 | |
import org.kuali.student.common.assembly.data.Data; |
6 | |
import org.kuali.student.common.ui.client.util.ExportElement; |
7 | |
|
8 | |
public interface ScreenReportProcessor { |
9 | |
|
10 | |
public byte[] createPdf(Data source, String template, String reportTitle); |
11 | |
|
12 | |
public byte[] createPdf(List<ExportElement> source, String template, String reportTitle); |
13 | |
|
14 | |
public String createXml(Data source, String template, String reportTitle); |
15 | |
|
16 | |
public byte[] createXls(Data source, String template, String reportTitle); |
17 | |
|
18 | |
public byte[] createXls(List<ExportElement> source, String template, String reportTitle); |
19 | |
|
20 | |
public byte[] createDoc(Data source, String template, String reportTitle); |
21 | |
|
22 | |
public byte[] createDoc(List<ExportElement> source, String template, String reportTitle); |
23 | |
|
24 | |
} |