nexus site path corrected
[portal.git] / ecomp-portal-BE / src / main / java / org / openecomp / portalapp / kpidash / model / KpiApiStats.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_api_stats")
31 public class KpiApiStats extends DomainVo {
32         /**
33          * 
34          */
35         private static final long serialVersionUID = 1L;
36
37         @Id
38         @Column(name = "api_type")
39         private String apiType;
40
41         @Column(name = "total_api")
42         private Long totalApi;
43
44         @Column(name = "comment")
45         private String comment;
46
47         public KpiApiStats() {
48         }
49
50         public String getApiType() {
51                 return apiType;
52         }
53
54         public void setApiType(String apiType) {
55                 this.apiType = apiType;
56         }
57
58         public Long getTotalApi() {
59                 return totalApi;
60         }
61
62         public void setTotalApi(Long totalApi) {
63                 this.totalApi = totalApi;
64         }
65
66         public String getComment() {
67                 return comment;
68         }
69
70         public void setComment(String comment) {
71                 this.comment = comment;
72         }
73
74 }