package org.gcube.portlets.widgets.ckancontentmoderator.client; import java.util.List; import org.gcube.datacatalogue.utillibrary.shared.jackan.model.CkanDataset; import org.gcube.portlets.widgets.ckancontentmoderator.server.ContentModeratorSystem.ItemStatus; import com.google.gwt.core.client.EntryPoint; import com.google.gwt.core.client.GWT; import com.google.gwt.user.client.rpc.AsyncCallback; /** * Entry point classes define onModuleLoad(). */ public class CkanContentModeratorWidget implements EntryPoint { /** * The message displayed to the user when the server cannot be reached or * returns an error. */ private static final String SERVER_ERROR = "An error occurred while " + "attempting to contact the server. Please check your network " + "connection and try again."; /** * Create a remote service proxy to talk to the server-side Greeting service. */ private final CkanContentModeratorServiceAsync greetingService = GWT.create(CkanContentModeratorService.class); /** * This is the entry point method. */ public void onModuleLoad() { greetingService.getListItemsForStatus(ItemStatus.PENDING, new AsyncCallback>() { @Override public void onSuccess(List result) { // TODO Auto-generated method stub } @Override public void onFailure(Throwable caught) { // TODO Auto-generated method stub } }); } }