view flys-client/src/main/java/de/intevation/flys/client/client/services/CreateCollectionService.java @ 26:c19985f75118

Implemented a service that triggers the artifact-collection creation in the artifact server. flys-client/trunk@1413 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Ingo Weinzierl <ingo.weinzierl@intevation.de>
date Mon, 07 Mar 2011 13:47:55 +0000
parents
children 987567f31200
line wrap: on
line source
package de.intevation.flys.client.client.services;

import com.google.gwt.user.client.rpc.RemoteService;
import com.google.gwt.user.client.rpc.RemoteServiceRelativePath;


/**
 * This interface describes the service for creating new collections.
 *
 * @author <a href="mailto:ingo.weinzierl@intevation.de">Ingo Weinzierl</a>
 */
@RemoteServiceRelativePath("create-collection")
public interface CreateCollectionService extends RemoteService {

    /**
     * This method creates a new collection in the artifact server and returns
     * the uuid of this collection.
     *
     * @return the uuid of the created collection.
     */
    String create(String serverUrl, String ownerId);
}
// vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :

http://dive4elements.wald.intevation.org