teichmann@5861: /* Copyright (C) 2011, 2012, 2013 by Bundesanstalt für Gewässerkunde teichmann@5861: * Software engineering by Intevation GmbH teichmann@5861: * teichmann@5993: * This file is Free Software under the GNU AGPL (>=v3) teichmann@5861: * and comes with ABSOLUTELY NO WARRANTY! Check out the teichmann@5993: * documentation coming with Dive4Elements River for details. teichmann@5861: */ teichmann@5861: teichmann@5835: package org.dive4elements.river.client.shared.model; bjoern@3865: bjoern@3865: import java.util.List; bjoern@3865: bjoern@3865: /** bjoern@3865: * The GaugeDischargeCurveArtifact implementation of an Artifact. bjoern@3865: * bjoern@3865: * @author Björn Ricks bjoern@3865: */ bjoern@3865: public class GaugeDischargeCurveArtifact extends DefaultArtifact { bjoern@3865: bjoern@3865: /** The name of this artifact */ bjoern@3865: public static final String NAME = "gauge_discharge_curve"; bjoern@3865: bjoern@3865: bjoern@3865: public GaugeDischargeCurveArtifact() { bjoern@3865: } bjoern@3865: bjoern@3865: bjoern@3865: public GaugeDischargeCurveArtifact(String uuid, String hash) { bjoern@3865: super(uuid, hash); bjoern@3865: } bjoern@3865: bjoern@3865: bjoern@3865: public GaugeDischargeCurveArtifact( bjoern@3865: String uuid, bjoern@3865: String hash, bjoern@3865: boolean inBackground, bjoern@3865: List messages bjoern@3865: ) { bjoern@3865: super(uuid, hash, inBackground, messages); bjoern@3865: } bjoern@3865: bjoern@3865: bjoern@3865: public String getName() { bjoern@3865: return NAME; bjoern@3865: } bjoern@3865: } bjoern@3865: // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 tw=80 :