1 /**
2 * Copyright 2010 The Kuali Foundation Licensed under the Educational Community License, Version 2.0 (the "License"); you may
3 * not use this file except in compliance with the License. You may obtain a copy of the License at
4 * http://www.osedu.org/licenses/ECL-2.0 Unless required by applicable law or agreed to in writing, software distributed
5 * under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
6 * implied. See the License for the specific language governing permissions and limitations under the License.
7 */
8
9 package org.kuali.student.common.ui.client.service;
10
11 import java.util.List;
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(List<ExportElement> exportElements, Data root, String templateName, String exportFormat, String reportTitle);
23 }