comparison 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
comparison
equal deleted inserted replaced
25:2da6be38d8b6 26:c19985f75118
1 package de.intevation.flys.client.client.services;
2
3 import com.google.gwt.user.client.rpc.RemoteService;
4 import com.google.gwt.user.client.rpc.RemoteServiceRelativePath;
5
6
7 /**
8 * This interface describes the service for creating new collections.
9 *
10 * @author <a href="mailto:ingo.weinzierl@intevation.de">Ingo Weinzierl</a>
11 */
12 @RemoteServiceRelativePath("create-collection")
13 public interface CreateCollectionService extends RemoteService {
14
15 /**
16 * This method creates a new collection in the artifact server and returns
17 * the uuid of this collection.
18 *
19 * @return the uuid of the created collection.
20 */
21 String create(String serverUrl, String ownerId);
22 }
23 // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :

http://dive4elements.wald.intevation.org