[UI] Support UI partial control
[validation.git] / ui / src / main / java / org / akraino / validation / ui / client / nexus / resources / ValidationNexusTestResult.java
1 /*
2  * Copyright (c) 2019 AT&T Intellectual Property. All rights reserved.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License"); you may
5  * not use this file except in compliance with the License. You may obtain
6  * 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
13  * implied. See the License for the specific language governing
14  * permissions and limitations under the License.
15  */
16 package org.akraino.validation.ui.client.nexus.resources;
17
18 import java.util.List;
19
20 public class ValidationNexusTestResult {
21
22     private int resultId;
23
24     private String blueprintName;
25
26     private String version;
27
28     private String silo;
29
30     private Boolean allLayers;
31
32     private Boolean optional;
33
34     private boolean result;
35
36     private String dateOfStorage;
37
38     private String timestamp;
39
40     private String submissionId;
41
42     private List<WRobotNexusTestResult> wRobotNexusTestResults;
43
44     public ValidationNexusTestResult() {
45
46     }
47
48     public Integer getResultId() {
49         return this.resultId;
50     }
51
52     public void setResultId(Integer resultId) {
53         this.resultId = resultId;
54     }
55
56     public String getBlueprintName() {
57         return this.blueprintName;
58     }
59
60     public void setBlueprintName(String blueprintName) {
61         this.blueprintName = blueprintName;
62     }
63
64     public String getVersion() {
65         return this.version;
66     }
67
68     public void setVersion(String version) {
69         this.version = version;
70     }
71
72     public String getSilo() {
73         return this.silo;
74     }
75
76     public void setSilo(String silo) {
77         this.silo = silo;
78     }
79
80     public Boolean getAllLayers() {
81         return this.allLayers;
82     }
83
84     public void setAllLayers(Boolean allLayers) {
85         this.allLayers = allLayers;
86     }
87
88     public Boolean getOptional() {
89         return this.optional;
90     }
91
92     public void setOptional(Boolean optional) {
93         this.optional = optional;
94     }
95
96     public boolean getResult() {
97         return this.result;
98     }
99
100     public void setResult(boolean result) {
101         this.result = result;
102     }
103
104     public String getDateOfStorage() {
105         return this.dateOfStorage;
106     }
107
108     public void setDateOfStorage(String dateOfStorage) {
109         this.dateOfStorage = dateOfStorage;
110     }
111
112     public String getTimestamp() {
113         return this.timestamp;
114     }
115
116     public void setTimestamp(String timestamp) {
117         this.timestamp = timestamp;
118     }
119
120     public String getSubmissionId() {
121         return this.submissionId;
122     }
123
124     public void setSubmissionId(String submissionId) {
125         this.submissionId = submissionId;
126     }
127
128     public List<WRobotNexusTestResult> getwRobotNexusTestResults() {
129         return this.wRobotNexusTestResults;
130     }
131
132     public void setwRobotNexusTestResults(List<WRobotNexusTestResult> wRobotNexusTestResults) {
133         this.wRobotNexusTestResults = wRobotNexusTestResults;
134     }
135
136 }