]> git.argeo.org Git - gpl/argeo-slc.git/blob - ResultAttributes.java
3a2c842e36930a8241e8c24bc16a41f3b0cf2734
[gpl/argeo-slc.git] / ResultAttributes.java
1 package org.argeo.slc.core.test.tree;
2
3 import java.util.Date;
4 import java.util.Hashtable;
5 import java.util.Map;
6
7 public class ResultAttributes {
8 private String uuid = null;
9 private Date closeDate = null;
10 private Map<String, String> attributes = new Hashtable<String, String>();
11
12 public ResultAttributes() {
13 super();
14 }
15
16 public ResultAttributes(TreeTestResult ttr) {
17 super();
18 this.uuid = ttr.getUuid();
19 this.attributes = ttr.getAttributes();
20 this.closeDate = ttr.getCloseDate();
21 }
22
23 public String getUuid() {
24 return uuid;
25 }
26
27 public void setUuid(String uuid) {
28 this.uuid = uuid;
29 }
30
31 public Map<String, String> getAttributes() {
32 return attributes;
33 }
34
35 public void setAttributes(Map<String, String> attributes) {
36 this.attributes = attributes;
37 }
38
39 public Date getCloseDate() {
40 return closeDate;
41 }
42
43 public void setCloseDate(Date closeDate) {
44 this.closeDate = closeDate;
45 }
46
47 }