comparison flys-client/src/main/java/de/intevation/flys/client/client/services/WQInfoService.java @ 245:1e73d5a4859c

Added new WQ info service and data structures. flys-client/trunk@1825 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Raimund Renkert <raimund.renkert@intevation.de>
date Wed, 04 May 2011 14:54:38 +0000
parents
children bc06a671ef60
comparison
equal deleted inserted replaced
244:1bc787eeb556 245:1e73d5a4859c
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 de.intevation.flys.client.shared.exceptions.ServerException;
7 import de.intevation.flys.client.shared.model.WQInfoObject;
8
9 /**
10 * This service is used to fetch a list of DistanceInfoObjects from artifact
11 * server for a specific river.
12 *
13 * @author <a href="mailto:raimund.renkert@intevation.de">Raimund Renkert</a>
14 */
15 @RemoteServiceRelativePath("mainvalues")
16 public interface WQInfoService extends RemoteService {
17
18 /**
19 * This method returns a list of DistanceInfoObjects for a specific river.
20 */
21 WQInfoObject[] getWQInfo(
22 String serverUrl,
23 String locale,
24 String river,
25 double start,
26 double end)
27 throws ServerException;
28 }
29 // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :

http://dive4elements.wald.intevation.org