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