about-vre/src/main/java/org/gcube/portlets/user/gcubeloggedin/client/LoggedinService.java

20 lines
572 B
Java
Raw Normal View History

package org.gcube.portlets.user.gcubeloggedin.client;
import org.gcube.portlets.user.gcubeloggedin.shared.VObject;
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("LoggedinServiceImpl")
public interface LoggedinService extends RemoteService {
VObject getSelectedRE(String portalURL);
String saveVREDescription(String toSave);
boolean isLeaveButtonAvailable(String currentUrl);
String removeUserFromVRE();
}