ingo@29: package de.intevation.flys.client.client.services; ingo@29: ingo@29: import com.google.gwt.user.client.rpc.RemoteService; ingo@29: import com.google.gwt.user.client.rpc.RemoteServiceRelativePath; ingo@29: ingo@217: import de.intevation.flys.client.shared.exceptions.ServerException; ingo@29: import de.intevation.flys.client.shared.model.River; ingo@29: ingo@29: /** ingo@29: * This interface provides a method to list the supported rivers of the artifact ingo@29: * server. ingo@29: * ingo@29: * @author Ingo Weinzierl ingo@29: */ ingo@29: @RemoteServiceRelativePath("rivers") ingo@29: public interface RiverService extends RemoteService { ingo@29: ingo@29: /** ingo@29: * This method returns a list of rivers provided by the artifact server. ingo@29: * ingo@229: * @param locale The locale used for the request. ingo@29: * ingo@29: * @return a list of rivers provided by the artifact server. ingo@29: */ raimund@1425: public River[] list(String locale) ingo@217: throws ServerException; ingo@29: } ingo@29: // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :