comparison src/main/java/org/dive4elements/artifacts/httpclient/objects/Artifact.java @ 71:a857866d162f

Moved directories to org.dive4elements
author Sascha L. Teichmann <teichmann@intevation.de>
date Thu, 25 Apr 2013 11:14:14 +0200
parents src/main/java/de/intevation/artifacts/httpclient/objects/Artifact.java@dbf1bfa070af
children 133281653904
comparison
equal deleted inserted replaced
70:da691e917f98 71:a857866d162f
1 /*
2 * Copyright (c) 2010 by Intevation GmbH
3 *
4 * This program is free software under the LGPL (>=v2.1)
5 * Read the file LGPL.txt coming with the software for details
6 * or visit http://www.gnu.org/licenses/ if it does not exist.
7 */
8
9 package de.intevation.artifacts.httpclient.objects;
10
11 /**
12 * An <code>ArtifactObject</code> representing an artifact.
13 *
14 * @author <a href="mailto:ingo.weinzierl@intevation.de">Ingo Weinzierl</a>
15 *
16 */
17 public class Artifact {
18
19 /**
20 * The uuid of this Artifact which must be used to identify
21 * the artifact at the <code>ArtifactDatabase</code>.
22 */
23 private String uuid = null;
24
25 /**
26 * The hash of the artifact which was send be the <code>ArtifactDatabase</code>.
27 */
28 private String hash = null;
29
30 /**
31 * Constructor
32 * @param uuid the uuid of this Artifact which must be used to identify
33 * the artifact at the <code>ArtifactDatabase</code>
34 * @param hash the hash of the artifact which was send be the
35 * <code>ArtifactDatabase</code>
36 */
37 public Artifact(String uuid, String hash) {
38 this.uuid = uuid;
39 this.hash = hash;
40 }
41
42 public String getHash() {
43 return this.hash;
44 }
45
46 public String getUuid() {
47 return this.uuid;
48 }
49 }
50 // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf-8 :

http://dive4elements.wald.intevation.org