2 package org.onap.ccsdk.features.sdnr.northbound.oofpcipoc.handlenotif.pojos;
4 import com.fasterxml.jackson.annotation.JsonInclude;
5 import com.fasterxml.jackson.annotation.JsonProperty;
6 import com.fasterxml.jackson.annotation.JsonPropertyOrder;
8 @JsonInclude(JsonInclude.Include.NON_NULL)
19 public class LTENeighborListInUseLTECell {
21 @JsonProperty("pnfName")
22 private String pnfName;
23 @JsonProperty("enable")
24 private String enable;
25 @JsonProperty("alias")
27 @JsonProperty("mustInclude")
28 private String mustInclude;
29 @JsonProperty("plmnid")
30 private String plmnid;
33 @JsonProperty("phyCellId")
34 private String phyCellId;
35 @JsonProperty("blacklisted")
36 private String blacklisted;
39 * No args constructor for use in serialization
42 public LTENeighborListInUseLTECell() {
56 public LTENeighborListInUseLTECell(String pnfName, String enable, String alias, String mustInclude, String plmnid, String cid, String phyCellId, String blacklisted) {
58 this.pnfName = pnfName;
61 this.mustInclude = mustInclude;
64 this.phyCellId = phyCellId;
65 this.blacklisted = blacklisted;
68 @JsonProperty("pnfName")
69 public String getPnfName() {
73 @JsonProperty("pnfName")
74 public void setPnfName(String pnfName) {
75 this.pnfName = pnfName;
78 @JsonProperty("enable")
79 public String getEnable() {
83 @JsonProperty("enable")
84 public void setEnable(String enable) {
88 @JsonProperty("alias")
89 public String getAlias() {
93 @JsonProperty("alias")
94 public void setAlias(String alias) {
98 @JsonProperty("mustInclude")
99 public String getMustInclude() {
103 @JsonProperty("mustInclude")
104 public void setMustInclude(String mustInclude) {
105 this.mustInclude = mustInclude;
108 @JsonProperty("plmnid")
109 public String getPlmnid() {
113 @JsonProperty("plmnid")
114 public void setPlmnid(String plmnid) {
115 this.plmnid = plmnid;
119 public String getCid() {
124 public void setCid(String cid) {
128 @JsonProperty("phyCellId")
129 public String getPhyCellId() {
133 @JsonProperty("phyCellId")
134 public void setPhyCellId(String phyCellId) {
135 this.phyCellId = phyCellId;
138 @JsonProperty("blacklisted")
139 public String getBlacklisted() {
143 @JsonProperty("blacklisted")
144 public void setBlacklisted(String blacklisted) {
145 this.blacklisted = blacklisted;
149 public String toString() {
150 return "LTENeighborListInUseLTECell [pnfName=" + pnfName + ", enable=" + enable + ", alias=" + alias
151 + ", mustInclude=" + mustInclude + ", plmnid=" + plmnid + ", cid=" + cid + ", phyCellId=" + phyCellId
152 + ", blacklisted=" + blacklisted + "]";