[UI] Support UI partial control
[validation.git] / ui / src / main / java / org / akraino / validation / ui / entity / Submission.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.entity;
17
18 import java.io.Serializable;
19
20 import javax.persistence.Column;
21 import javax.persistence.Entity;
22 import javax.persistence.GeneratedValue;
23 import javax.persistence.GenerationType;
24 import javax.persistence.Id;
25 import javax.persistence.JoinColumn;
26 import javax.persistence.ManyToOne;
27 import javax.persistence.Table;
28
29 import org.akraino.validation.ui.data.SubmissionStatus;
30
31 @Entity
32 @Table(name = "submission")
33 public class Submission implements Serializable {
34
35     /**
36      *
37      */
38     private static final long serialVersionUID = 1L;
39
40     @Id
41     @GeneratedValue(strategy = GenerationType.IDENTITY)
42     @Column(name = "id")
43     private int submissionId;
44
45     @Column(name = "status")
46     private SubmissionStatus status;
47
48     @ManyToOne
49     @JoinColumn(name = "timeslot_id")
50     private Timeslot timeslot;
51
52     public void setSubmissionId(int submissionId) {
53         this.submissionId = submissionId;
54     }
55
56     public int getSubmissionId() {
57         return submissionId;
58     }
59
60     public SubmissionStatus getSubmissionStatus() {
61         return this.status;
62     }
63
64     public void setSubmissionStatus(SubmissionStatus submissionStatus) {
65         this.status = submissionStatus;
66     }
67
68     public void setTimeslot(Timeslot timeslot) {
69         this.timeslot = timeslot;
70     }
71
72     public Timeslot getTimeslot() {
73         return this.timeslot;
74     }
75
76 }