nexus site path corrected
[portal.git] / ecomp-portal-BE / src / main / java / org / openecomp / portalapp / kpidash / model / KpiUserStoryStats.java
1 /*-
2  * ================================================================================
3  * eCOMP Portal
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ================================================================================
19  */
20 package org.openecomp.portalapp.kpidash.model;
21
22 import javax.persistence.Column;
23 import javax.persistence.Entity;
24 import javax.persistence.Id;
25 import javax.persistence.Table;
26
27 import org.openecomp.portalsdk.core.domain.support.DomainVo;
28
29 @Entity
30 @Table(name = "kpi_user_story_stats1")
31 public class KpiUserStoryStats extends DomainVo {
32         /**
33          * 
34          */
35         private static final long serialVersionUID = -1193197465342848502L;
36
37         @Id
38         @Column(name = "release_key")
39         private String releaseKey;
40
41         @Column(name = "delivered")
42         private Long delivered;
43
44         @Column(name = "in_progress")
45         private Long inProgress;
46
47         @Column(name = "IST_progress_readiness")
48         private String ISTProgressReadiness;
49
50         @Column(name = "E2E_progress_readiness")
51         private String E2EProgressReadiness;
52
53         @Column(name = "Key_Highlights")
54         private String KeyHighlights;
55
56         public KpiUserStoryStats() {
57         }
58
59         public String getReleaseKey() {
60                 return releaseKey;
61         }
62
63         public void setReleaseKey(String releaseKey) {
64                 this.releaseKey = releaseKey;
65         }
66
67         public Long getDelivered() {
68                 return delivered;
69         }
70
71         public void setDelivered(Long delivered) {
72                 this.delivered = delivered;
73         }
74
75         public Long getInProgress() {
76                 return inProgress;
77         }
78
79         public void setInProgress(Long inProgress) {
80                 this.inProgress = inProgress;
81         }
82
83         public String getISTProgressReadiness() {
84                 return ISTProgressReadiness;
85         }
86
87         public void setISTProgressReadiness(String iSTProgressReadiness) {
88                 ISTProgressReadiness = iSTProgressReadiness;
89         }
90
91         public String getE2EProgressReadiness() {
92                 return E2EProgressReadiness;
93         }
94
95         public void setE2EProgressReadiness(String e2eProgressReadiness) {
96                 E2EProgressReadiness = e2eProgressReadiness;
97         }
98
99         public String getKeyHighlights() {
100                 return KeyHighlights;
101         }
102
103         public void setKeyHighlights(String keyHighlights) {
104                 KeyHighlights = keyHighlights;
105         }
106
107 }