gis-viewer-app/src/main/java/org/gcube/portlets/user/gisviewerapp/client/rpc/GisViewerAppService.java

13 lines
397 B
Java

package org.gcube.portlets.user.gisviewerapp.client.rpc;
import com.google.gwt.user.client.rpc.RemoteService;
import com.google.gwt.user.client.rpc.RemoteServiceRelativePath;
/**
* The client side stub for the RPC service.
*/
@RemoteServiceRelativePath("gisapp")
public interface GisViewerAppService extends RemoteService {
String greetServer(String name) throws IllegalArgumentException;
}