accounting-dashboard/src/main/java/org/gcube/portlets/user/accountingdashboard/client/rpc/AccountingDashboardServiceA...

27 lines
543 B
Java

/**
*
*/
package org.gcube.portlets.user.accountingdashboard.client.rpc;
import org.gcube.portlets.user.accountingdashboard.shared.session.UserInfo;
import com.google.gwt.core.client.GWT;
import com.google.gwt.user.client.rpc.AsyncCallback;
/**
*
* @author Giancarlo Panichi
*
*
*/
public interface AccountingDashboardServiceAsync {
public static AccountingDashboardServiceAsync INSTANCE = (AccountingDashboardServiceAsync) GWT
.create(AccountingDashboardService.class);
void hello(AsyncCallback<UserInfo> callback);
}