]> git.argeo.org Git - gpl/argeo-slc.git/blob - runtime/org.argeo.slc.core/src/main/java/org/argeo/slc/core/test/tree/ResultAttributes.java
Make default execution ressources temp dir dependent of the JVM OS user, in order...
[gpl/argeo-slc.git] / runtime / org.argeo.slc.core / src / main / java / org / argeo / slc / core / test / tree / ResultAttributes.java
1 /*
2 * Copyright (C) 2007-2012 Mathieu Baudier
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16 package org.argeo.slc.core.test.tree;
17
18 import java.io.Serializable;
19 import java.util.ArrayList;
20 import java.util.Date;
21 import java.util.Hashtable;
22 import java.util.List;
23 import java.util.Map;
24
25 import org.argeo.slc.core.attachment.SimpleAttachment;
26
27 public class ResultAttributes implements Serializable {
28 private static final long serialVersionUID = 1L;
29
30 private String uuid = null;
31 private Date closeDate = null;
32 private Map<String, String> attributes = new Hashtable<String, String>();
33 private List<SimpleAttachment> attachments = new ArrayList<SimpleAttachment>();
34
35 public ResultAttributes() {
36 super();
37 }
38
39 public ResultAttributes(TreeTestResult ttr) {
40 super();
41 this.uuid = ttr.getUuid();
42 this.attributes = ttr.getAttributes();
43 this.closeDate = ttr.getCloseDate();
44 this.attachments = ttr.getAttachments();
45 }
46
47 public String getUuid() {
48 return uuid;
49 }
50
51 public void setUuid(String uuid) {
52 this.uuid = uuid;
53 }
54
55 public Map<String, String> getAttributes() {
56 return attributes;
57 }
58
59 public void setAttributes(Map<String, String> attributes) {
60 this.attributes = attributes;
61 }
62
63 public Date getCloseDate() {
64 return closeDate;
65 }
66
67 public void setCloseDate(Date closeDate) {
68 this.closeDate = closeDate;
69 }
70
71 public List<SimpleAttachment> getAttachments() {
72 return attachments;
73 }
74
75 public void setAttachments(List<SimpleAttachment> attachments) {
76 this.attachments = attachments;
77 }
78
79 }