package org.gcube.portlets.widgets.ckandatapublisherwidget.client; import java.util.List; import org.gcube.portlets.widgets.ckandatapublisherwidget.shared.DatasetMetadataBean; import org.gcube.portlets.widgets.ckandatapublisherwidget.shared.GroupBean; import org.gcube.portlets.widgets.ckandatapublisherwidget.shared.LicensesBean; import org.gcube.portlets.widgets.ckandatapublisherwidget.shared.MetaDataProfileBean; import org.gcube.portlets.widgets.ckandatapublisherwidget.shared.ResourceElementBean; import com.google.gwt.user.client.rpc.AsyncCallback; /** * CKAN publisher services RPC. * @author Costantino Perciante at ISTI-CNR (costantino.perciante@isti.cnr.it) */ public interface CKanPublisherServiceAsync { /** * Retrieve the list of licenses to show to the user. * @return a LicenseBean on success, null on error. */ void getLicenses(AsyncCallback callback); /** * Retrieve a partially filled bean given a folder id and its owner. * @param folderId * @return @return a DatasetMetadataBean on success, null on error. */ void getDatasetBean(String folderId, AsyncCallback callback); /** * Try to create such dataset starting from the information contained into the toCreate bean. * @param toCreate * @return the sent bean full filled with the needed information */ void createCKanDataset(DatasetMetadataBean toCreate, AsyncCallback callback); /** * Add this resource to the dataset whose id is datasetId * @param resource * @param datasetId * @param callback */ void addResourceToDataset(ResourceElementBean resource, String datasetId, AsyncCallback callback); /** * Delete this resource from the dataset with id datasetId * @param resource * @return true on success, false otherwise */ void deleteResourceFromDataset(ResourceElementBean resource, AsyncCallback callback); /** * Retrieve the list of profiles for a given organization name . * @return a List on success, null on error. */ void getProfiles(String orgName, AsyncCallback> callback); /** * Given the title the user wants to give to the new product to create, a check is performed * to understand if a dataset with the proposed title (and so the id generated at server side) already exists * @param title * @return true if it exists, false otherwise */ void datasetIdAlreadyExists(String title, AsyncCallback callback); // /** // * Return a tree object representing the whole folder hierarchy // * @param folderId // * @return ResourceElementBean // */ // void getTreeFolder(String folderId, // AsyncCallback callback); /** * Retrieve the list of groups the user can choose to associate this product with. * @param orgName retrieve the groups in the context linked to this name. If null, returns * the one in the current context. * @return a list of groups' beans */ void getUserGroups(String orgName, AsyncCallback> callback); /** * The method checks if the user is a publisher or he/she doesn't have the rights to publish * @return true if he/she can publish, false otherwise */ void isPublisherUser(boolean isWorkspaceRequest, AsyncCallback callback); }