Mercurial > dive4elements > gnv-client
comparison gnv-artifacts/src/main/java/de/intevation/gnv/timeseries/TimeSeriesArtifact.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.timeseries; | |
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 * Artifact used for product timeseries product. | |
22 * | |
23 * @author <a href="mailto:tim.englich@intevation.de">Tim Englich</a> | |
24 * @author <a href="mailto:ingo.weinzierl@intevation.de">Ingo Weinzierl</a> | |
25 * | |
26 */ | |
27 public class TimeSeriesArtifact extends GNVArtifactBase { | |
28 | |
29 /** | |
30 * the logger, used to log exceptions and additonaly information | |
31 */ | |
32 private static Logger log = Logger.getLogger(TimeSeriesArtifact.class); | |
33 | |
34 /** | |
35 * The UID of this class | |
36 */ | |
37 private static final long serialVersionUID = -8291547966693867205L; | |
38 | |
39 /** | |
40 * Constructor | |
41 */ | |
42 public TimeSeriesArtifact() { | |
43 super(); | |
44 log.debug("TimeSeriesArtifact.Constructor"); | |
45 this.name = "timeSeries"; | |
46 } | |
47 | |
48 | |
49 @Override | |
50 public void setup( | |
51 String identifier, | |
52 ArtifactFactory factory, | |
53 Object context, | |
54 CallMeta meta, | |
55 Document data | |
56 ) { | |
57 log.debug("TimeSeriesArtifact.setup"); | |
58 super.setup(identifier, factory, context, meta, data); | |
59 } | |
60 } | |
61 // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 : |