Mercurial > dive4elements > gnv-client
comparison gnv-artifacts/src/main/java/de/intevation/gnv/profile/vertical/VerticalProfileArtifact.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.profile.vertical; | |
10 | |
11 import de.intevation.artifacts.ArtifactFactory; | |
12 import de.intevation.artifacts.CallMeta; | |
13 | |
14 import de.intevation.gnv.artifacts.GNVArtifactBase; | |
15 | |
16 import org.apache.log4j.Logger; | |
17 | |
18 import org.w3c.dom.Document; | |
19 | |
20 /** | |
21 * @author <a href="mailto:tim.englich@intevation.de">Tim Englich</a> | |
22 * | |
23 */ | |
24 public class VerticalProfileArtifact extends GNVArtifactBase { | |
25 /** | |
26 * the logger, used to log exceptions and additonaly information | |
27 */ | |
28 private static Logger log = Logger.getLogger(VerticalProfileArtifact.class); | |
29 | |
30 /** | |
31 * The UID of this class | |
32 */ | |
33 private static final long serialVersionUID = -8291547966693867205L; | |
34 | |
35 /** | |
36 * Constructor | |
37 */ | |
38 public VerticalProfileArtifact() { | |
39 super(); | |
40 log.debug("VerticalProfileArtifact.Constructor"); | |
41 this.name = "verticalProfile"; | |
42 } | |
43 | |
44 | |
45 /** | |
46 * @see de.intevation.gnv.artifacts.GNVArtifactBase#setup(java.lang.String, | |
47 * de.intevation.artifacts.ArtifactFactory, java.lang.Object, | |
48 * org.w3c.dom.Document) | |
49 */ | |
50 @Override | |
51 public void setup( | |
52 String identifier, | |
53 ArtifactFactory factory, | |
54 Object context, | |
55 CallMeta meta, | |
56 Document data | |
57 ) { | |
58 log.debug("VerticalProfileArtifact.setup"); | |
59 super.setup(identifier, factory, context, meta, data); | |
60 } | |
61 } | |
62 // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf-8 : |