comparison flys-client/src/main/java/de/intevation/flys/client/client/services/SedimentLoadInfoService.java @ 4298:1f98a3a89e13

New client side service for sediment load infos. The service requests an sediment load overview and creates info objects for the received data.
author Raimund Renkert <rrenkert@intevation.de>
date Mon, 29 Oct 2012 13:13:23 +0100
parents
children 651b93c10dc5
comparison
equal deleted inserted replaced
4297:6d44914b2dd4 4298:1f98a3a89e13
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.DischargeInfoObject;
8 import de.intevation.flys.client.shared.model.SedimentLoadInfoObject;
9
10 /**
11 * This service is used to fetch a list of SedimentLoadInfoObjects from artifact
12 * server for a specific river.
13 *
14 * @author <a href="mailto:raimund.renkert@intevation.de">Raimund Renkert</a>
15 */
16 @RemoteServiceRelativePath("sedimentloadinfo")
17 public interface SedimentLoadInfoService extends RemoteService {
18
19 /**
20 * This method returns a list of SedimentLoadInfoObjects for a specific river.
21 */
22 SedimentLoadInfoObject[] getSedimentLoadInfo(
23 String locale,
24 String river,
25 String type,
26 double startKm,
27 double endKm)
28 throws ServerException;
29 }
30 // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :

http://dive4elements.wald.intevation.org