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

11 lines
308 B
Java
Raw Normal View History

2023-04-27 09:35:55 +02:00
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;
}