gis-viewer-app/src/main/java/org/gcube/portlets/user/gisviewerapp/server/GisViewerAppServiceImpl.java

19 lines
486 B
Java

package org.gcube.portlets.user.gisviewerapp.server;
import org.gcube.portlets.user.gisviewerapp.client.rpc.GisViewerAppService;
import com.google.gwt.user.server.rpc.RemoteServiceServlet;
/**
* The server side implementation of the RPC service.
*/
@SuppressWarnings("serial")
public class GisViewerAppServiceImpl extends RemoteServiceServlet implements
GisViewerAppService {
public String greetServer(String input) throws IllegalArgumentException {
return "";
}
}