comparison src/main/java/de/intevation/artifacts/httpclient/objects/Artifact.java @ 22:dbf1bfa070af

Removed trailing whitespace. http-client/trunk@2242 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Sascha L. Teichmann <sascha.teichmann@intevation.de>
date Sun, 26 Jun 2011 17:16:04 +0000
parents a1db30b33f43
children
comparison
equal deleted inserted replaced
21:79a5a2455d6d 22:dbf1bfa070af
15 * 15 *
16 */ 16 */
17 public class Artifact { 17 public class Artifact {
18 18
19 /** 19 /**
20 * The uuid of this Artifact which must be used to identify 20 * The uuid of this Artifact which must be used to identify
21 * the artifact at the <code>ArtifactDatabase</code>. 21 * the artifact at the <code>ArtifactDatabase</code>.
22 */ 22 */
23 private String uuid = null; 23 private String uuid = null;
24 24
25 /** 25 /**
27 */ 27 */
28 private String hash = null; 28 private String hash = null;
29 29
30 /** 30 /**
31 * Constructor 31 * Constructor
32 * @param uuid the uuid of this Artifact which must be used to identify 32 * @param uuid the uuid of this Artifact which must be used to identify
33 * the artifact at the <code>ArtifactDatabase</code> 33 * the artifact at the <code>ArtifactDatabase</code>
34 * @param hash the hash of the artifact which was send be the 34 * @param hash the hash of the artifact which was send be the
35 * <code>ArtifactDatabase</code> 35 * <code>ArtifactDatabase</code>
36 */ 36 */
37 public Artifact(String uuid, String hash) { 37 public Artifact(String uuid, String hash) {
38 this.uuid = uuid; 38 this.uuid = uuid;
39 this.hash = hash; 39 this.hash = hash;

http://dive4elements.wald.intevation.org