001 /** 002 * Copyright 2010 The Kuali Foundation Licensed under the Educational Community License, Version 2.0 (the "License"); you may 003 * not use this file except in compliance with the License. You may obtain a copy of the License at 004 * http://www.osedu.org/licenses/ECL-2.0 Unless required by applicable law or agreed to in writing, software distributed 005 * under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 006 * implied. See the License for the specific language governing permissions and limitations under the License. 007 */ 008 009 package org.kuali.student.common.ui.client.service; 010 011 import java.util.List; 012 013 import org.kuali.student.common.assembly.data.Data; 014 import org.kuali.student.common.ui.client.util.ExportElement; 015 016 import com.google.gwt.user.client.rpc.RemoteService; 017 import com.google.gwt.user.client.rpc.RemoteServiceRelativePath; 018 019 @RemoteServiceRelativePath("rpcservices/GwtExportRpcService") 020 public interface GwtExportRpcService extends RemoteService { 021 022 public String reportExport(List<ExportElement> exportElements, Data root, String templateName, String exportFormat, String reportTitle); 023 }