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)
15 @JsonProperty("CellIdentity")
16 private String cellIdentity;
17 @JsonProperty("NeighborListInUse")
18 private NeighborListInUse neighborListInUse;
21 * No args constructor for use in serialization
29 * @param neighborListInUse
32 public RAN(String cellIdentity, NeighborListInUse neighborListInUse) {
34 this.cellIdentity = cellIdentity;
35 this.neighborListInUse = neighborListInUse;
38 @JsonProperty("CellIdentity")
39 public String getCellIdentity() {
43 @JsonProperty("CellIdentity")
44 public void setCellIdentity(String cellIdentity) {
45 this.cellIdentity = cellIdentity;
48 @JsonProperty("NeighborListInUse")
49 public NeighborListInUse getNeighborListInUse() {
50 return neighborListInUse;
53 @JsonProperty("NeighborListInUse")
54 public void setNeighborListInUse(NeighborListInUse neighborListInUse) {
55 this.neighborListInUse = neighborListInUse;
59 public String toString() {
60 return "RAN [cellIdentity=" + cellIdentity + ", neighborListInUse=" + neighborListInUse + "]";