comparison gnv-artifacts/src/main/java/de/intevation/gnv/layer/LayerArtifact.java @ 616:93978859fa9e

Added the Configuration and the Classes for the new Product Layer. The Product does not generate any output at this Time. gnv-artifacts/trunk@686 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Tim Englich <tim.englich@intevation.de>
date Fri, 12 Feb 2010 18:04:58 +0000
parents
children 9ae63d39bdd0
comparison
equal deleted inserted replaced
615:01054ddccb0f 616:93978859fa9e
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 }

http://dive4elements.wald.intevation.org