bjoern@3714: package de.intevation.flys.client.client.services; bjoern@3714: bjoern@3714: import java.util.List; 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@3714: @RemoteServiceRelativePath("gaugeoverviewinfo") bjoern@3714: public interface GaugeOverviewInfoService extends RemoteService { bjoern@3714: bjoern@3714: public RiverInfo getRiverInfo(String river) throws ServerException; bjoern@3714: bjoern@3714: }