teichmann@5835: package org.dive4elements.river.client.client.services; raimund@2455: raimund@2455: import java.util.Map; raimund@2455: raimund@2455: import com.google.gwt.user.client.rpc.RemoteService; raimund@2455: import com.google.gwt.user.client.rpc.RemoteServiceRelativePath; raimund@2455: teichmann@5835: import org.dive4elements.river.client.shared.exceptions.ServerException; raimund@2455: raimund@2455: /** raimund@2455: * This interface describes the service to get wms urls for UESK and new maps. raimund@2455: * raimund@2455: * @author Raimund Renkert raimund@2455: */ raimund@2455: @RemoteServiceRelativePath("map-urls") raimund@2455: public interface MapUrlService extends RemoteService { raimund@2455: raimund@2455: Map getUrls() throws ServerException; raimund@2455: } raimund@2455: // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :