gcube-widgets/src/main/java/org/gcube/portlets/user/gcubewidgets/client/ClientScopeHelper.java

14 lines
396 B
Java

package org.gcube.portlets.user.gcubewidgets.client;
import org.gcube.portlets.user.gcubewidgets.client.rpc.ScopeService;
import org.gcube.portlets.user.gcubewidgets.client.rpc.ScopeServiceAsync;
import com.google.gwt.core.client.GWT;
public class ClientScopeHelper {
public static ScopeServiceAsync getService() {
return GWT.create(ScopeService.class);
//Window.Location.getHref();
}
}