package org.gcube.portlet.user.my_vres.client; import java.util.ArrayList; import org.gcube.portlet.user.my_vres.shared.VO; import com.google.gwt.user.client.rpc.RemoteService; import com.google.gwt.user.client.rpc.RemoteServiceRelativePath; /** * The client side stub for the RPC service. */ @RemoteServiceRelativePath("greet") public interface MyVREsService extends RemoteService { ArrayList getInfrastructureVOs(); void loadLayout(String scope, String URL); }