my-vres/src/main/java/org/gcube/portlet/user/my_vres/client/MyVREsService.java

23 lines
700 B
Java

package org.gcube.portlet.user.my_vres.client;
import java.util.ArrayList;
import java.util.LinkedHashMap;
import org.gcube.portlet.user.my_vres.shared.AuthorizationBean;
import org.gcube.portlet.user.my_vres.shared.VRE;
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 {
LinkedHashMap<String, ArrayList<VRE>> getUserVREs();
String getSiteLandingPagePath();
AuthorizationBean getUserQualifierToken(String context, String state, String clientId, String authorisedRedirectURL);
}