You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
403 B
Java

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 <code>GreetingService</code>.
*/
public interface LoggedinServiceAsync {
void getSelectedRE(AsyncCallback<VObject> callback);
void getDefaultCommunityURL(AsyncCallback<String> callback);
}