comparison gwt-client/src/main/java/org/dive4elements/river/client/shared/model/SINFOArtifact.java @ 8854:7bbfb24e6eec

SINFO - first prototype of BArt Fließtiefen
author gernotbelger
date Thu, 18 Jan 2018 18:34:41 +0100
parents
children abf14917be32
comparison
equal deleted inserted replaced
8853:8c64617a7991 8854:7bbfb24e6eec
1 /* Copyright (C) 2017 by Bundesanstalt für Gewässerkunde
2 * Software engineering by Intevation GmbH
3 *
4 * This file is Free Software under the GNU AGPL (>=v3)
5 * and comes with ABSOLUTELY NO WARRANTY! Check out the
6 * documentation coming with Dive4Elements River for details.
7 */
8
9 package org.dive4elements.river.client.shared.model;
10
11 import java.util.List;
12
13
14 /**
15 * The SINFO implementation of an Artifact.
16 *
17 * @author Gernot Belger
18 */
19 public class SINFOArtifact extends DefaultArtifact {
20
21 /** The name of this artifact: 'sinfo'.*/
22 private static final String NAME = "sinfo";
23
24 /** Necessary for serialization */
25 public SINFOArtifact() {
26 }
27
28 // public SINFOArtifact(String uuid, String hash) {
29 // super(uuid, hash);
30 // }
31
32 public SINFOArtifact(
33 String uuid,
34 String hash,
35 boolean inBackground,
36 List<CalculationMessage> messages
37 ) {
38 super(uuid, hash, inBackground, messages);
39 }
40
41
42 public String getName() {
43 return NAME;
44 }
45 }
46 // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :

http://dive4elements.wald.intevation.org