tabular-data-manager/src/main/java/org/gcube/portlets/user/td/client/rpc/TabularDataService.java

13 lines
383 B
Java

package org.gcube.portlets.user.td.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("tds")
public interface TabularDataService extends RemoteService {
String greetServer(String name) throws IllegalArgumentException;
}