[UI] Support UI partial control
[validation.git] / ui / src / main / java / org / akraino / validation / ui / data / SubmissionData.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");
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.akraino.validation.ui.data;
17
18 import org.akraino.validation.ui.client.nexus.resources.ValidationNexusTestResult;
19 import org.akraino.validation.ui.entity.Timeslot;
20
21 public class SubmissionData {
22
23     private int submissionId;
24
25     private SubmissionStatus status;
26
27     private Timeslot timeslot;
28
29     private ValidationNexusTestResult validationNexusTestResult;
30
31     public SubmissionData() {
32
33     }
34
35     public int getSubmissionId() {
36         return this.submissionId;
37     }
38
39     public void setSubmissionId(int submissionId) {
40         this.submissionId = submissionId;
41     }
42
43     public SubmissionStatus getStatus() {
44         return this.status;
45     }
46
47     public void setStatus(SubmissionStatus status) {
48         this.status = status;
49     }
50
51     public Timeslot getTimeslot() {
52         return this.timeslot;
53     }
54
55     public void setTimeslot(Timeslot timeslot) {
56         this.timeslot = timeslot;
57     }
58
59     public ValidationNexusTestResult getValidationNexusTestResult() {
60         return this.validationNexusTestResult;
61     }
62
63     public void setValidationNexusTestResult(ValidationNexusTestResult validationNexusTestResult) {
64         this.validationNexusTestResult = validationNexusTestResult;
65     }
66 }