comparison flys-client/src/main/java/de/intevation/flys/client/client/services/CSVExportService.java @ 256:5e1c1b7d6516

Added table and service for calculation output to UI. flys-client/trunk@1868 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Raimund Renkert <raimund.renkert@intevation.de>
date Mon, 09 May 2011 14:29:53 +0000
parents
children 71a7533555d0
comparison
equal deleted inserted replaced
255:e4f0bef52689 256:5e1c1b7d6516
1 package de.intevation.flys.client.client.services;
2
3 import com.google.gwt.user.client.rpc.RemoteService;
4 import com.google.gwt.user.client.rpc.RemoteServiceRelativePath;
5
6 import java.util.List;
7
8 import de.intevation.flys.client.shared.exceptions.ServerException;
9
10 /**
11 * This service is used to fetch a list of DistanceInfoObjects from artifact
12 * server for a specific river.
13 *
14 * @author <a href="mailto:raimund.renkert@intevation.de">Raimund Renkert</a>
15 */
16 @RemoteServiceRelativePath("export")
17 public interface CSVExportService extends RemoteService {
18
19 /**
20 * This method returns a list of DistanceInfoObjects for a specific river.
21 */
22 List getCSV(
23 String serverUrl,
24 String locale,
25 String uuid,
26 String name)
27 throws ServerException;
28 }
29 // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :

http://dive4elements.wald.intevation.org