Mercurial > dive4elements > river
comparison flys-artifacts/src/main/java/de/intevation/flys/artifacts/FixationArtifact.java @ 3318:dbe2f85bf160
merged flys-artifacts/2.8
author | Thomas Arendsen Hein <thomas@intevation.de> |
---|---|
date | Fri, 28 Sep 2012 12:14:35 +0200 |
parents | 2f922be407ea |
children | a66df8e8d3df |
comparison
equal
deleted
inserted
replaced
2987:98c7a46ec5ae | 3318:dbe2f85bf160 |
---|---|
1 package de.intevation.flys.artifacts; | |
2 | |
3 import de.intevation.flys.artifacts.model.FacetTypes; | |
4 | |
5 import org.apache.log4j.Logger; | |
6 | |
7 /** | |
8 * The default fixation analysis artifact. | |
9 * | |
10 * @author <a href="mailto:raimund.renkert@intevation.de">Raimund Renkert</a> | |
11 */ | |
12 public class FixationArtifact | |
13 extends FLYSArtifact | |
14 implements FacetTypes { | |
15 | |
16 /** The logger for this class. */ | |
17 private static Logger logger = Logger.getLogger(FixationArtifact.class); | |
18 | |
19 /** The name of the artifact. */ | |
20 public static final String ARTIFACT_NAME = "fixanalysis"; | |
21 | |
22 /** | |
23 * The default constructor. | |
24 */ | |
25 public FixationArtifact() { | |
26 } | |
27 | |
28 /** | |
29 * Returns the name of the concrete artifact. | |
30 * | |
31 * @return the name of the concrete artifact. | |
32 */ | |
33 @Override | |
34 public String getName() { | |
35 return ARTIFACT_NAME; | |
36 } | |
37 } | |
38 // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 : |