geoportal-data-viewer-widget/src/main/java/org/gcube/portlets/widgets/gdvw/client/GreetingServiceAsync.java

11 lines
308 B
Java

package org.gcube.portlets.widgets.gdvw.client;
import com.google.gwt.user.client.rpc.AsyncCallback;
/**
* The async counterpart of <code>GreetingService</code>.
*/
public interface GreetingServiceAsync {
void greetServer(String input, AsyncCallback<String> callback) throws IllegalArgumentException;
}