comparison gwt-client/src/main/java/org/dive4elements/river/client/shared/model/UINFOArtifact.java @ 8995:8c3e5682cb60

Introduced UNFO module
author gernotbelger
date Thu, 12 Apr 2018 19:11:11 +0200
parents
children
comparison
equal deleted inserted replaced
8994:2bb38e25091b 8995:8c3e5682cb60
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 UINFO implementation of an Artifact.
16 *
17 * @author Gernot Belger
18 */
19 public class UINFOArtifact extends DefaultArtifact {
20
21 /** The name of this artifact: 'uinfo'.*/
22 private static final String NAME = "uinfo";
23
24 /** Necessary for serialization */
25 public UINFOArtifact() {
26 }
27
28 public UINFOArtifact(
29 String uuid,
30 String hash,
31 boolean inBackground,
32 List<CalculationMessage> messages
33 ) {
34 super(uuid, hash, inBackground, messages);
35 }
36
37
38 public String getName() {
39 return NAME;
40 }
41 }
42 // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :

http://dive4elements.wald.intevation.org