comparison flys-client/src/main/java/de/intevation/flys/client/client/services/GaugeInfoService.java @ 2466:52a98e1653c1

Added a new RPC service to fetch gauge information. flys-client/trunk@4173 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Ingo Weinzierl <ingo.weinzierl@intevation.de>
date Tue, 20 Mar 2012 12:57:03 +0000
parents
children
comparison
equal deleted inserted replaced
2465:ca40a5b1bb04 2466:52a98e1653c1
1 package de.intevation.flys.client.client.services;
2
3 import java.util.List;
4
5 import com.google.gwt.user.client.rpc.RemoteService;
6 import com.google.gwt.user.client.rpc.RemoteServiceRelativePath;
7
8 import de.intevation.flys.client.shared.exceptions.ServerException;
9 import de.intevation.flys.client.shared.model.Gauge;
10
11 /**
12 * @author <a href="mailto:raimund.renkert@intevation.de">Raimund Renkert</a>
13 */
14 @RemoteServiceRelativePath("gaugeinfo")
15 public interface GaugeInfoService extends RemoteService {
16
17 List<Gauge> getGaugeInfo(String river, String refnumber)
18 throws ServerException;
19 }
20 // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :

http://dive4elements.wald.intevation.org