Implement Enhancements to the Microservice
[dcaegen2/services/son-handler.git] / src / main / java / org / onap / dcaegen2 / services / sonhms / model / LteCell.java
1 /*******************************************************************************
2  *  ============LICENSE_START=======================================================
3  *  son-handler
4  *  ================================================================================
5  *   Copyright (C) 2019 Wipro Limited.
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  *     ============LICENSE_END=========================================================
19  *  
20  *******************************************************************************/
21
22 package org.onap.dcaegen2.services.sonhms.model;
23
24 import com.fasterxml.jackson.annotation.JsonProperty;
25
26 public class LteCell {
27
28     @JsonProperty("PNFName")
29     private String pnfName;
30
31     @JsonProperty("PLMNID")
32     private String plmnId;
33
34     @JsonProperty("CID")
35     private String cid;
36
37     @JsonProperty("PhyCellID")
38     private int phyCellId;
39
40     @JsonProperty("Blacklisted")
41     private String blacklisted;
42     
43     public LteCell() {
44         
45     }
46
47     public String getPnfName() {
48         return pnfName;
49     }
50
51     public void setPnfName(String pnfName) {
52         this.pnfName = pnfName;
53     }
54
55     public String getPlmnId() {
56         return plmnId;
57     }
58
59     public void setPlmnId(String plmnId) {
60         this.plmnId = plmnId;
61     }
62
63     public String getCid() {
64         return cid;
65     }
66
67     public void setCid(String cid) {
68         this.cid = cid;
69     }
70
71     public int getPhyCellId() {
72         return phyCellId;
73     }
74
75     public void setPhyCellId(int phyCellId) {
76         this.phyCellId = phyCellId;
77     }
78
79     public String getBlacklisted() {
80         return blacklisted;
81     }
82
83     public void setBlacklisted(String blacklisted) {
84         this.blacklisted = blacklisted;
85     }
86     
87 }