package org.gcube.portlets.user.gcubeloggedin.client; import org.gcube.portlets.user.gcubeloggedin.shared.VObject; import com.google.gwt.user.client.rpc.AsyncCallback; /** * The async counterpart of GreetingService. */ public interface LoggedinServiceAsync { void getSelectedRE(String portalURL, AsyncCallback callback); void saveVREDescription(String toSave, AsyncCallback callback); void isLeaveButtonAvailable(String currentUrl, AsyncCallback callback); void removeUserFromVRE(AsyncCallback callback); }