Mercurial > dive4elements > gnv-client
comparison gnv-artifacts/src/main/java/de/intevation/gnv/layer/LayerArtifact.java @ 1119:7c4f81f74c47
merged gnv-artifacts
author | Thomas Arendsen Hein <thomas@intevation.de> |
---|---|
date | Fri, 28 Sep 2012 12:14:00 +0200 |
parents | c01c220312d0 |
children |
comparison
equal
deleted
inserted
replaced
1027:fca4b5eb8d2f | 1119:7c4f81f74c47 |
---|---|
1 /* | |
2 * Copyright (c) 2010 by Intevation GmbH | |
3 * | |
4 * This program is free software under the LGPL (>=v2.1) | |
5 * Read the file LGPL.txt coming with the software for details | |
6 * or visit http://www.gnu.org/licenses/ if it does not exist. | |
7 */ | |
8 | |
9 package de.intevation.gnv.layer; | |
10 | |
11 import org.apache.log4j.Logger; | |
12 import org.w3c.dom.Document; | |
13 | |
14 import de.intevation.artifacts.ArtifactFactory; | |
15 import de.intevation.artifacts.CallMeta; | |
16 import de.intevation.gnv.artifacts.GNVArtifactBase; | |
17 | |
18 /** | |
19 * Artifact used for Product Layer. | |
20 * @author <a href="mailto:tim.englich@intevation.de">Tim Englich</a> | |
21 */ | |
22 public class LayerArtifact extends GNVArtifactBase{ | |
23 | |
24 /** | |
25 * the logger, used to log exceptions and additionally information | |
26 */ | |
27 private static Logger log = Logger.getLogger(LayerArtifact.class); | |
28 | |
29 /** | |
30 * The UID of this Class | |
31 */ | |
32 private static final long serialVersionUID = 409054207294748753L; | |
33 | |
34 /** | |
35 * Constructor | |
36 */ | |
37 public LayerArtifact() { | |
38 super(); | |
39 log.debug("LayerArtifact.Constructor"); | |
40 this.name = "layer"; | |
41 } | |
42 | |
43 @Override | |
44 public void setup( | |
45 String identifier, | |
46 ArtifactFactory factory, | |
47 Object context, | |
48 CallMeta meta, | |
49 Document data | |
50 ) { | |
51 log.debug("LayerArtifact.setup"); | |
52 super.setup(identifier, factory, context, meta, data); | |
53 } | |
54 | |
55 } | |
56 // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 : |