Adding Copyright to all Files
[ccsdk/features.git] / sdnr / northbound / oofpcipoc / consumer / src / main / java / org / onap / ccsdk / features / sdnr / northbound / oofpcipoc / handlenotif / pojos / LTENeighborListInUseLTECell.java
1 /*
2  * ============LICENSE_START=======================================================
3  * ONAP : ccsdk features
4  * ================================================================================
5  * Copyright (C) 2020 AT&T Intellectual Property. All rights reserved.
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.ccsdk.features.sdnr.northbound.oofpcipoc.handlenotif.pojos;
23
24 import com.fasterxml.jackson.annotation.JsonInclude;
25 import com.fasterxml.jackson.annotation.JsonProperty;
26 import com.fasterxml.jackson.annotation.JsonPropertyOrder;
27
28 @JsonInclude(JsonInclude.Include.NON_NULL)
29 @JsonPropertyOrder({
30     "pnfName",
31     "enable",
32     "alias",
33     "mustInclude",
34     "plmnid",
35     "cid",
36     "phyCellId",
37     "blacklisted"
38 })
39 public class LTENeighborListInUseLTECell {
40
41     @JsonProperty("pnfName")
42     private String pnfName;
43     @JsonProperty("enable")
44     private String enable;
45     @JsonProperty("alias")
46     private String alias;
47     @JsonProperty("mustInclude")
48     private String mustInclude;
49     @JsonProperty("plmnid")
50     private String plmnid;
51     @JsonProperty("cid")
52     private String cid;
53     @JsonProperty("phyCellId")
54     private String phyCellId;
55     @JsonProperty("blacklisted")
56     private String blacklisted;
57
58     /**
59      * No args constructor for use in serialization
60      *
61      */
62     public LTENeighborListInUseLTECell() {
63     }
64
65     /**
66      *
67      * @param mustInclude
68      * @param phyCellId
69      * @param alias
70      * @param enable
71      * @param blacklisted
72      * @param cid
73      * @param pnfName
74      * @param plmnid
75      */
76     public LTENeighborListInUseLTECell(String pnfName, String enable, String alias, String mustInclude, String plmnid, String cid, String phyCellId, String blacklisted) {
77         super();
78         this.pnfName = pnfName;
79         this.enable = enable;
80         this.alias = alias;
81         this.mustInclude = mustInclude;
82         this.plmnid = plmnid;
83         this.cid = cid;
84         this.phyCellId = phyCellId;
85         this.blacklisted = blacklisted;
86     }
87
88     @JsonProperty("pnfName")
89     public String getPnfName() {
90         return pnfName;
91     }
92
93     @JsonProperty("pnfName")
94     public void setPnfName(String pnfName) {
95         this.pnfName = pnfName;
96     }
97
98     @JsonProperty("enable")
99     public String getEnable() {
100         return enable;
101     }
102
103     @JsonProperty("enable")
104     public void setEnable(String enable) {
105         this.enable = enable;
106     }
107
108     @JsonProperty("alias")
109     public String getAlias() {
110         return alias;
111     }
112
113     @JsonProperty("alias")
114     public void setAlias(String alias) {
115         this.alias = alias;
116     }
117
118     @JsonProperty("mustInclude")
119     public String getMustInclude() {
120         return mustInclude;
121     }
122
123     @JsonProperty("mustInclude")
124     public void setMustInclude(String mustInclude) {
125         this.mustInclude = mustInclude;
126     }
127
128     @JsonProperty("plmnid")
129     public String getPlmnid() {
130         return plmnid;
131     }
132
133     @JsonProperty("plmnid")
134     public void setPlmnid(String plmnid) {
135         this.plmnid = plmnid;
136     }
137
138     @JsonProperty("cid")
139     public String getCid() {
140         return cid;
141     }
142
143     @JsonProperty("cid")
144     public void setCid(String cid) {
145         this.cid = cid;
146     }
147
148     @JsonProperty("phyCellId")
149     public String getPhyCellId() {
150         return phyCellId;
151     }
152
153     @JsonProperty("phyCellId")
154     public void setPhyCellId(String phyCellId) {
155         this.phyCellId = phyCellId;
156     }
157
158     @JsonProperty("blacklisted")
159     public String getBlacklisted() {
160         return blacklisted;
161     }
162
163     @JsonProperty("blacklisted")
164     public void setBlacklisted(String blacklisted) {
165         this.blacklisted = blacklisted;
166     }
167
168         @Override
169         public String toString() {
170                 return "LTENeighborListInUseLTECell [pnfName=" + pnfName + ", enable=" + enable + ", alias=" + alias
171                                 + ", mustInclude=" + mustInclude + ", plmnid=" + plmnid + ", cid=" + cid + ", phyCellId=" + phyCellId
172                                 + ", blacklisted=" + blacklisted + "]";
173         }
174
175 }