social-profile/src/main/java/org/gcube/portlets/user/socialprofile/client/SocialServiceAsync.java

12 lines
292 B
Java
Raw Normal View History

package org.gcube.portlets.user.socialprofile.client;
import org.gcube.portlets.user.socialprofile.shared.UserContext;
import com.google.gwt.user.client.rpc.AsyncCallback;
public interface SocialServiceAsync {
void getUserContext(String userid, AsyncCallback<UserContext> callback);
}