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; raimund@2541: raimund@2541: import java.util.List; raimund@2541: raimund@2541: /** felix@4309: * The Fixanalysis implementation of an Artifact (client side). raimund@2541: * raimund@2541: * @author Raimund Renkert raimund@2541: */ gernotbelger@9072: public class FixAnalysisArtifact extends AbstractFixBunduArtifact { raimund@2541: raimund@2541: public static final String NAME = "fixanalysis"; raimund@2541: raimund@2541: public FixAnalysisArtifact() { gernotbelger@9072: super(); raimund@2541: } raimund@2541: gernotbelger@9072: public FixAnalysisArtifact(final String uuid, final String hash) { raimund@2541: super(uuid, hash); raimund@2541: } raimund@2541: gernotbelger@9072: public FixAnalysisArtifact(final String uuid, final String hash, final boolean background, final List msg) { gernotbelger@9072: super(uuid, hash, background, msg); raimund@2541: } raimund@2541: gernotbelger@9072: @Override raimund@2541: public String getName() { raimund@2541: return NAME; raimund@2541: } raimund@2884: gernotbelger@9072: @Override gernotbelger@9072: protected String getEventstateId() { gernotbelger@9072: return "state.fix.eventselect"; // synchron halten mit xml-file im Server raimund@2884: } raimund@2884: raimund@2541: } raimund@2541: // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :