This repository has been archived on 2024-05-07. You can view files and clone it, but cannot push or open issues or pull requests.
species-discovery/src/main/java/org/gcube/portlets/user/speciesdiscovery/client/rpc/GISInfoService.java

13 lines
354 B
Java

package org.gcube.portlets.user.speciesdiscovery.client.rpc;
import com.google.gwt.user.client.rpc.RemoteService;
import com.google.gwt.user.client.rpc.RemoteServiceRelativePath;
@RemoteServiceRelativePath("gisinfo")
public interface GISInfoService extends RemoteService {
public String getGisLinkByLayerName(String layername) throws Exception;
}