comparison flys-client/src/main/java/de/intevation/flys/client/server/RemoveArtifactServiceImpl.java @ 1319:6ba17b628552

Added RemoveArtifactService. flys-client/trunk@2960 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Felix Wolfsteller <felix.wolfsteller@intevation.de>
date Thu, 13 Oct 2011 12:28:21 +0000
parents
children ab8eb2f544f2
comparison
equal deleted inserted replaced
1318:ecd0243bc09e 1319:6ba17b628552
1 package de.intevation.flys.client.server;
2
3 import de.intevation.flys.client.shared.exceptions.ServerException;
4 import de.intevation.flys.client.shared.model.Collection;
5 import de.intevation.flys.client.client.services.RemoveArtifactService;
6
7
8 /**
9 * Implementation of RemoveArtifactService .
10 */
11 public class RemoveArtifactServiceImpl
12 extends DescribeCollectionServiceImpl
13 implements RemoveArtifactService
14 {
15 public Collection remove(
16 Collection collection,
17 String artifactId,
18 String url,
19 String locale)
20 throws ServerException
21 {
22 System.out.println("RemoveArtifactServiceImpl.remove");
23
24 return CollectionHelper.removeArtifact(collection, artifactId, url, locale);
25 }
26 }
27 // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :

http://dive4elements.wald.intevation.org