comparison gwt-client/src/main/java/org/dive4elements/river/client/client/services/DynamicMainValuesService.java @ 9288:82c67b859aa7

bundu.bezugswst worklflow incl. service impl for mainValues to be calculated
author gernotbelger
date Tue, 24 Jul 2018 10:39:03 +0200
parents
children bc9a45d2b1fa
comparison
equal deleted inserted replaced
9287:6c88ad449c83 9288:82c67b859aa7
1 /* Copyright (C) 2011, 2012, 2013 by Bundesanstalt für Gewässerkunde
2 * Software engineering by Intevation GmbH
3 *
4 * This file is Free Software under the GNU AGPL (>=v3)
5 * and comes with ABSOLUTELY NO WARRANTY! Check out the
6 * documentation coming with Dive4Elements River for details.
7 */
8
9 package org.dive4elements.river.client.client.services;
10
11 import org.dive4elements.river.client.shared.exceptions.ServerException;
12 import org.dive4elements.river.client.shared.model.WQInfoObject;
13
14 import com.google.gwt.user.client.rpc.RemoteService;
15 import com.google.gwt.user.client.rpc.RemoteServiceRelativePath;
16
17 /**
18 * This service is used to fetch a list dynamically computed main values.
19 *
20 * @author <a href="mailto:raimund.renkert@intevation.de">Raimund Renkert</a>
21 */
22 @RemoteServiceRelativePath("dynamic-mainvalues")
23 public interface DynamicMainValuesService extends RemoteService {
24
25 /**
26 * This method returns a list of DistanceInfoObjects for a specific river.
27 */
28 WQInfoObject[] getWQInfo(String locale, String river, double start, double end, int startYear, int endYear) throws ServerException;
29 }

http://dive4elements.wald.intevation.org