view flys-client/src/main/java/de/intevation/flys/client/client/services/RiverInfoService.java @ 4939:c9d8b9b4895d

Renamed 'W fÃŒr ungleichwertigen ...' to 'W fÃŒr benutzerdefinierten...'
author Raimund Renkert <rrenkert@intevation.de>
date Thu, 31 Jan 2013 14:32:51 +0100
parents ef154fbf58f1
children
line wrap: on
line source
package de.intevation.flys.client.client.services;

import com.google.gwt.user.client.rpc.RemoteService;
import com.google.gwt.user.client.rpc.RemoteServiceRelativePath;

import de.intevation.flys.client.shared.exceptions.ServerException;
import de.intevation.flys.client.shared.model.RiverInfo;

/**
 * @author <a href="mailto:bjoern.ricks@intevation.de">Björn Ricks</a>
 */
@RemoteServiceRelativePath("riverinfo")
public interface RiverInfoService extends RemoteService {

    /**
     * Returns a RiverInfo object with GaugeInfos
     */
    public RiverInfo getGauges(String river)
        throws ServerException;

    /**
     * Returns a RiverInfo object with MeasurementStations
     */
    public RiverInfo getMeasurementStations(String river)
        throws ServerException;

}

http://dive4elements.wald.intevation.org