Mercurial > dive4elements > gnv-client
comparison gnv-artifacts/src/main/java/de/intevation/gnv/artifacts/context/GNVArtifactContext.java @ 376:d8f3ef441bf2
merged gnv-artifacts/0.3
author | Thomas Arendsen Hein <thomas@intevation.de> |
---|---|
date | Fri, 28 Sep 2012 12:13:47 +0200 |
parents | 7fb9441dd8af |
children | da21c256a0ba |
comparison
equal
deleted
inserted
replaced
293:6b0ef2324d02 | 376:d8f3ef441bf2 |
---|---|
1 /** | |
2 * | |
3 */ | |
4 package de.intevation.gnv.artifacts.context; | |
5 | |
6 import org.apache.log4j.Logger; | |
7 import org.w3c.dom.Document; | |
8 | |
9 import de.intevation.artifactdatabase.DefaultArtifactContext; | |
10 | |
11 /** | |
12 * @author Tim Englich <tim.englich@intevation.de> | |
13 * | |
14 */ | |
15 public class GNVArtifactContext extends DefaultArtifactContext { | |
16 /** | |
17 * the logger, used to log exceptions and additonaly information | |
18 */ | |
19 private static Logger log = Logger.getLogger(GNVArtifactContext.class); | |
20 | |
21 public GNVArtifactContext() { | |
22 super(); | |
23 log.debug("GNVArtifactContext.Constructor"); | |
24 } | |
25 | |
26 public GNVArtifactContext(Document config) { | |
27 super(config); | |
28 log.debug("GNVArtifactContext.Constructor(config)"); | |
29 } | |
30 | |
31 } |