]> 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
Add license headers
[gpl/argeo-slc.git] / runtime / org.argeo.slc.core / src / main / java / org / argeo / slc / core / test / tree / ResultAttributes.java
1 /*
2 * Copyright (C) 2010 Mathieu Baudier <mbaudier@argeo.org>
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
17 package org.argeo.slc.core.test.tree;
18
19 import java.io.Serializable;
20 import java.util.ArrayList;
21 import java.util.Date;
22 import java.util.Hashtable;
23 import java.util.List;
24 import java.util.Map;
25
26 import org.argeo.slc.core.attachment.SimpleAttachment;
27
28 public class ResultAttributes implements Serializable {
29 private static final long serialVersionUID = 1L;
30
31 private String uuid = null;
32 private Date closeDate = null;
33 private Map<String, String> attributes = new Hashtable<String, String>();
34 private List<SimpleAttachment> attachments = new ArrayList<SimpleAttachment>();
35
36 public ResultAttributes() {
37 super();
38 }
39
40 public ResultAttributes(TreeTestResult ttr) {
41 super();
42 this.uuid = ttr.getUuid();
43 this.attributes = ttr.getAttributes();
44 this.closeDate = ttr.getCloseDate();
45 this.attachments = ttr.getAttachments();
46 }
47
48 public String getUuid() {
49 return uuid;
50 }
51
52 public void setUuid(String uuid) {
53 this.uuid = uuid;
54 }
55
56 public Map<String, String> getAttributes() {
57 return attributes;
58 }
59
60 public void setAttributes(Map<String, String> attributes) {
61 this.attributes = attributes;
62 }
63
64 public Date getCloseDate() {
65 return closeDate;
66 }
67
68 public void setCloseDate(Date closeDate) {
69 this.closeDate = closeDate;
70 }
71
72 public List<SimpleAttachment> getAttachments() {
73 return attachments;
74 }
75
76 public void setAttachments(List<SimpleAttachment> attachments) {
77 this.attachments = attachments;
78 }
79
80 }