bjoern@3714: package de.intevation.flys.client.client.services; bjoern@3714: bjoern@3714: import com.google.gwt.user.client.rpc.RemoteService; bjoern@3714: import com.google.gwt.user.client.rpc.RemoteServiceRelativePath; bjoern@3714: bjoern@3714: import de.intevation.flys.client.shared.exceptions.ServerException; bjoern@3714: import de.intevation.flys.client.shared.model.RiverInfo; bjoern@3714: bjoern@3714: /** bjoern@3714: * @author Björn Ricks bjoern@3714: */ bjoern@4243: @RemoteServiceRelativePath("riverinfo") bjoern@4243: public interface RiverInfoService extends RemoteService { bjoern@3714: bjoern@4243: /** bjoern@4243: * Returns a RiverInfo object with GaugeInfos bjoern@4243: */ bjoern@4243: public RiverInfo getGauges(String river) bjoern@4243: throws ServerException; bjoern@3714: bjoern@3714: }