Mercurial > dive4elements > gnv-client
comparison gnv-artifacts/src/main/java/de/intevation/gnv/layer/LayerArtifact.java @ 657:af3f56758f59
merged gnv-artifacts/0.5
author | Thomas Arendsen Hein <thomas@intevation.de> |
---|---|
date | Fri, 28 Sep 2012 12:13:53 +0200 |
parents | 93978859fa9e |
children | 9ae63d39bdd0 |
comparison
equal
deleted
inserted
replaced
590:5f5f273c8566 | 657:af3f56758f59 |
---|---|
1 /** | |
2 * | |
3 */ | |
4 package de.intevation.gnv.layer; | |
5 | |
6 import org.apache.log4j.Logger; | |
7 import org.w3c.dom.Document; | |
8 | |
9 import de.intevation.artifacts.ArtifactFactory; | |
10 import de.intevation.gnv.artifacts.GNVArtifactBase; | |
11 | |
12 /** | |
13 * @author Tim Englich <tim.englich@intevation.de> | |
14 * | |
15 */ | |
16 public class LayerArtifact extends GNVArtifactBase{ | |
17 | |
18 /** | |
19 * the logger, used to log exceptions and additionally information | |
20 */ | |
21 private static Logger log = Logger.getLogger(LayerArtifact.class); | |
22 | |
23 /** | |
24 * The UID of this Class | |
25 */ | |
26 private static final long serialVersionUID = 409054207294748753L; | |
27 | |
28 /** | |
29 * Constructor | |
30 */ | |
31 public LayerArtifact() { | |
32 super(); | |
33 log.debug("LayerArtifact.Constructor"); | |
34 this.name = "layer"; | |
35 } | |
36 | |
37 | |
38 /** | |
39 * @see de.intevation.gnv.artifacts.GNVArtifactBase#setup(java.lang.String, | |
40 * de.intevation.artifacts.ArtifactFactory, java.lang.Object | |
41 * org.w3c.dom.Document) | |
42 */ | |
43 @Override | |
44 public void setup(String identifier, ArtifactFactory factory, | |
45 Object context, Document data) { | |
46 log.debug("LayerArtifact.setup"); | |
47 super.setup(identifier, factory, context, data); | |
48 } | |
49 | |
50 } |