nexus site path corrected
[portal.git] / ecomp-portal-BE / src / main / java / org / openecomp / portalapp / kpidash / model / KpiServiceSupported.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_service_supported")
31 public class KpiServiceSupported extends DomainVo {
32         /**
33          * 
34          */
35         private static final long serialVersionUID = 1L;
36
37         @Id
38         @Column(name = "service_type")
39         private String serviceType;
40
41         @Column(name = "total_count")
42         private Long totalCount;
43
44         public String getServiceType() {
45                 return serviceType;
46         }
47
48         public void setServiceType(String serviceType) {
49                 this.serviceType = serviceType;
50         }
51
52         public Long getTotalCount() {
53                 return totalCount;
54         }
55
56         public void setTotalCount(Long totalCount) {
57                 this.totalCount = totalCount;
58         }
59
60 }