teichmann@5835: package org.dive4elements.river.client.client.services; ingo@828: ingo@828: import com.google.gwt.user.client.rpc.RemoteService; ingo@828: import com.google.gwt.user.client.rpc.RemoteServiceRelativePath; ingo@828: teichmann@5835: import org.dive4elements.river.client.shared.exceptions.ServerException; teichmann@5835: import org.dive4elements.river.client.shared.model.MapInfo; ingo@828: ingo@828: ingo@828: /** ingo@828: * @author Ingo Weinzierl ingo@828: */ ingo@828: @RemoteServiceRelativePath("map-info") ingo@828: public interface MapInfoService extends RemoteService { ingo@828: raimund@1425: MapInfo getMapInfo(String locale, String river) ingo@828: throws ServerException; ingo@828: } ingo@828: // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :