1
2
3
4
5
6
7
8
9 package org.kuali.student.common.ui.client.service;
10
11 import java.util.ArrayList;
12
13 import org.kuali.student.common.assembly.data.Data;
14 import org.kuali.student.common.ui.client.util.ExportElement;
15
16 import com.google.gwt.user.client.rpc.RemoteService;
17 import com.google.gwt.user.client.rpc.RemoteServiceRelativePath;
18
19 @RemoteServiceRelativePath("rpcservices/GwtExportRpcService")
20 public interface GwtExportRpcService extends RemoteService {
21
22 public String reportExport(ArrayList<ExportElement> exportElements, Data root, String templateName, String exportFormat, String reportTitle);
23 }