comparison flys-client/src/main/java/de/intevation/flys/client/client/services/DescribeArtifactService.java @ 865:43f520f923a8

Remove the loading panel when its Artifact's background process is finished. flys-client/trunk@2672 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Ingo Weinzierl <ingo.weinzierl@intevation.de>
date Thu, 08 Sep 2011 07:44:05 +0000
parents
children bc06a671ef60
comparison
equal deleted inserted replaced
864:c0e13cf826d7 865:43f520f923a8
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 import de.intevation.flys.client.shared.exceptions.ServerException;
7 import de.intevation.flys.client.shared.model.Artifact;
8
9 /**
10 * This interface provides artifact specific operation DESCRIBE.
11 *
12 * @author <a href="mailto:ingo.weinzierl@intevation.de">Ingo Weinzierl</a>
13 */
14 @RemoteServiceRelativePath("describe")
15 public interface DescribeArtifactService extends RemoteService {
16
17 /**
18 * This method inserts new data into the an existing artifact.
19 *
20 * @param url The url of the artifact server.
21 * @param locale The locale used for the request.
22 * @param artifact The artifact.
23 *
24 * @return the artifact which description might have been changed.
25 */
26 public Artifact describe(
27 String url,
28 String locale,
29 Artifact artifact)
30 throws ServerException;
31 }
32 // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :

http://dive4elements.wald.intevation.org