]> git.argeo.org Git - gpl/argeo-slc.git/blob - runtime/org.argeo.slc.support.simple/src/main/java/org/argeo/slc/core/test/tree/ResultAttributes.java
cd0213ca750d5e60785aa695f2443f71e12455b5
[gpl/argeo-slc.git] / runtime / org.argeo.slc.support.simple / src / main / java / org / argeo / slc / core / test / tree / ResultAttributes.java
1 package org.argeo.slc.core.test.tree;
2
3 import java.util.Hashtable;
4 import java.util.Map;
5
6 public class ResultAttributes {
7 private String uuid = null;
8 private Map<String, String> attributes = new Hashtable<String, String>();
9
10 public ResultAttributes() {
11 super();
12 }
13
14 public ResultAttributes(TreeTestResult ttr) {
15 super();
16 this.uuid = ttr.getUuid();
17 this.attributes = ttr.getAttributes();
18 }
19
20 public String getUuid() {
21 return uuid;
22 }
23
24 public void setUuid(String uuid) {
25 this.uuid = uuid;
26 }
27
28 public Map<String, String> getAttributes() {
29 return attributes;
30 }
31
32 public void setAttributes(Map<String, String> attributes) {
33 this.attributes = attributes;
34 }
35
36 }