Mercurial > dive4elements > http-client
comparison src/main/java/de/intevation/artifacts/httpclient/objects/Artifact.java @ 0:a1db30b33f43
Moved the experimental branch 'work-on-gwt' of the console-client to an own module 'http-client' and removed the console-client.
http-client/trunk@1323 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author | Ingo Weinzierl <ingo.weinzierl@intevation.de> |
---|---|
date | Thu, 17 Feb 2011 10:31:40 +0000 |
parents | |
children | dbf1bfa070af |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:a1db30b33f43 |
---|---|
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 : |