code coverage for M3
[dcaegen2/services/son-handler.git] / src / main / java / org / onap / dcaegen2 / services / sonhms / model / LteNeighborListInUseLteCell.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 LteNeighborListInUseLteCell {
27     @JsonProperty("pnfName")
28     private String pnfName;
29
30     @JsonProperty("enable")
31     private String enable;
32
33     @JsonProperty("alias")
34     private String alias;
35
36     @JsonProperty("mustInclude")
37     private String mustInclude;
38
39     @JsonProperty("plmnid")
40     private String plmnId;
41
42     @JsonProperty("cid")
43     private String cid;
44
45     @JsonProperty("phyCellId")
46     private int phyCellId;
47
48     @JsonProperty("blacklisted")
49     private String blacklisted;
50
51     public LteNeighborListInUseLteCell() {
52
53     }
54
55     /**
56      * Parameterized Constructor.
57      */
58
59     public LteNeighborListInUseLteCell(String pnfName, String enable, String alias, String mustInclude, String plmnId,
60             String cid, int phyCellId, String blacklisted) {
61         super();
62         this.pnfName = pnfName;
63         this.enable = enable;
64         this.alias = alias;
65         this.mustInclude = mustInclude;
66         this.plmnId = plmnId;
67         this.cid = cid;
68         this.phyCellId = phyCellId;
69         this.blacklisted = blacklisted;
70     }
71
72     public String getMustInclude() {
73         return mustInclude;
74     }
75
76     public void setMustInclude(String mustInclude) {
77         this.mustInclude = mustInclude;
78     }
79
80     public int getPhyCellId() {
81         return phyCellId;
82     }
83
84     public void setPhyCellId(int phyCellId) {
85         this.phyCellId = phyCellId;
86     }
87
88     public String getAlias() {
89         return alias;
90     }
91
92     public void setAlias(String alias) {
93         this.alias = alias;
94     }
95
96     public String getEnable() {
97         return enable;
98     }
99
100     public void setEnable(String enable) {
101         this.enable = enable;
102     }
103
104     public String getBlacklisted() {
105         return blacklisted;
106     }
107
108     public void setBlacklisted(String blacklisted) {
109         this.blacklisted = blacklisted;
110     }
111
112     public String getCid() {
113         return cid;
114     }
115
116     public void setCid(String cid) {
117         this.cid = cid;
118     }
119
120     public String getPnfName() {
121         return pnfName;
122     }
123
124     public void setPnfName(String pnfName) {
125         this.pnfName = pnfName;
126     }
127
128     public String getPlmnid() {
129         return plmnId;
130     }
131
132     public void setPlmnid(String plmnId) {
133         this.plmnId = plmnId;
134     }
135
136 }