]> git.argeo.org Git - gpl/argeo-slc.git/blob - runtime/org.argeo.slc.core/src/main/java/org/argeo/slc/msg/test/tree/CloseTreeTestResultRequest.java
Improve execution
[gpl/argeo-slc.git] / runtime / org.argeo.slc.core / src / main / java / org / argeo / slc / msg / test / tree / CloseTreeTestResultRequest.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.msg.test.tree;
18
19 import java.io.Serializable;
20 import java.util.Date;
21
22 import org.argeo.slc.core.test.tree.TreeTestResult;
23
24 public class CloseTreeTestResultRequest implements Serializable {
25 private static final long serialVersionUID = 7384136025920047977L;
26 private String resultUuid;
27 private Date closeDate;
28
29 public CloseTreeTestResultRequest() {
30
31 }
32
33 public CloseTreeTestResultRequest(String resultUuid, Date closeDate) {
34 this.resultUuid = resultUuid;
35 this.closeDate = closeDate;
36 }
37
38 public CloseTreeTestResultRequest(TreeTestResult ttr) {
39 this.resultUuid = ttr.getUuid();
40 this.closeDate = ttr.getCloseDate();
41 }
42
43 public String getResultUuid() {
44 return resultUuid;
45 }
46
47 public void setResultUuid(String id) {
48 this.resultUuid = id;
49 }
50
51 public Date getCloseDate() {
52 return closeDate;
53 }
54
55 public void setCloseDate(Date closeDate) {
56 this.closeDate = closeDate;
57 }
58
59 @Override
60 public String toString() {
61 return getClass().getSimpleName() + "#" + resultUuid;
62 }
63
64 }