ws-task-executor-widget/src/main/java/org/gcube/portlets/widgets/wstaskexecutor/server/GreetingServiceImpl.java

30 lines
748 B
Java

package org.gcube.portlets.widgets.wstaskexecutor.server;
import java.util.List;
import org.gcube.portlets.widgets.wstaskexecutor.client.GreetingService;
import org.gcube.portlets.widgets.wstaskexecutor.shared.GcubeScope;
import com.google.gwt.user.server.rpc.RemoteServiceServlet;
/**
* The server side implementation of the RPC service.
*/
@SuppressWarnings("serial")
public class GreetingServiceImpl extends RemoteServiceServlet implements
GreetingService {
/* (non-Javadoc)
* @see org.gcube.portlets.widgets.wstaskexecutor.client.GreetingService#getListOfScopesForLoggedUser()
*/
@Override
public List<GcubeScope> getListOfScopesForLoggedUser()
throws Exception {
// TODO Auto-generated method stub
return null;
}
}