teichmann@5863: /* Copyright (C) 2011, 2012, 2013 by Bundesanstalt für Gewässerkunde teichmann@5863: * Software engineering by Intevation GmbH teichmann@5863: * teichmann@5863: * This file is Free Software under the GNU AGPL (>=v3) teichmann@5863: * and comes with ABSOLUTELY NO WARRANTY! Check out the teichmann@5863: * documentation coming with Dive4Elements River for details. teichmann@5863: */ teichmann@5863: teichmann@5831: package org.dive4elements.river.artifacts.states; ingo@937: ingo@937: import org.w3c.dom.Document; ingo@937: import org.w3c.dom.Element; ingo@937: import org.w3c.dom.Node; ingo@937: teichmann@5831: import org.dive4elements.artifacts.Artifact; teichmann@5831: import org.dive4elements.artifacts.CallContext; ingo@937: teichmann@5831: import org.dive4elements.river.artifacts.model.FacetTypes; ingo@937: ingo@937: ingo@937: public class OutputState extends DefaultState implements FacetTypes { ingo@937: ingo@937: @Override ingo@937: public Element describeStatic( ingo@937: Artifact artifact, ingo@937: Document document, ingo@937: Node root, ingo@937: CallContext context, ingo@937: String uuid) ingo@937: { ingo@937: return null; ingo@937: } ingo@937: ingo@937: ingo@937: @Override ingo@937: public Element describe( ingo@937: Artifact artifact, ingo@937: Document document, ingo@937: Node root, ingo@937: CallContext context, ingo@937: String uuid) ingo@937: { ingo@937: return null; ingo@937: } ingo@937: } ingo@937: // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :