teichmann@5861: /* Copyright (C) 2011, 2012, 2013 by Bundesanstalt für Gewässerkunde teichmann@5861: * Software engineering by Intevation GmbH teichmann@5861: * teichmann@5861: * This file is Free Software under the GNU AGPL (>=v3) teichmann@5861: * and comes with ABSOLUTELY NO WARRANTY! Check out the teichmann@5861: * documentation coming with Dive4Elements River for details. teichmann@5861: */ teichmann@5861: teichmann@5835: package org.dive4elements.river.client.client.services; rrenkert@4298: rrenkert@4298: import com.google.gwt.user.client.rpc.RemoteService; rrenkert@4298: import com.google.gwt.user.client.rpc.RemoteServiceRelativePath; rrenkert@4298: teichmann@5835: import org.dive4elements.river.client.shared.exceptions.ServerException; teichmann@5835: import org.dive4elements.river.client.shared.model.SedimentLoadInfoObject; rrenkert@4298: rrenkert@4298: /** rrenkert@4298: * This service is used to fetch a list of SedimentLoadInfoObjects from artifact rrenkert@4298: * server for a specific river. rrenkert@4298: * rrenkert@4298: * @author Raimund Renkert rrenkert@4298: */ rrenkert@4298: @RemoteServiceRelativePath("sedimentloadinfo") rrenkert@4298: public interface SedimentLoadInfoService extends RemoteService { rrenkert@4298: rrenkert@4298: /** rrenkert@4298: * This method returns a list of SedimentLoadInfoObjects for a specific river. rrenkert@4298: */ rrenkert@4298: SedimentLoadInfoObject[] getSedimentLoadInfo( rrenkert@4298: String locale, rrenkert@4298: String river, rrenkert@4298: String type, rrenkert@4298: double startKm, rrenkert@4298: double endKm) rrenkert@4298: throws ServerException; rrenkert@4298: } rrenkert@4298: // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :