6709cddc2d7a00cedd9e9e792f033bde5018deee
[ccsdk/features.git] /
1
2 package org.onap.ccsdk.features.sdnr.northbound.oofpcipoc.handlenotif.pojos;
3
4 import com.fasterxml.jackson.annotation.JsonInclude;
5 import com.fasterxml.jackson.annotation.JsonProperty;
6 import com.fasterxml.jackson.annotation.JsonPropertyOrder;
7
8 @JsonInclude(JsonInclude.Include.NON_NULL)
9 @JsonPropertyOrder({
10     "CellIdentity",
11     "NeighborListInUse"
12 })
13 public class RAN {
14
15     @JsonProperty("CellIdentity")
16     private String cellIdentity;
17     @JsonProperty("NeighborListInUse")
18     private NeighborListInUse neighborListInUse;
19
20     /**
21      * No args constructor for use in serialization
22      * 
23      */
24     public RAN() {
25     }
26
27     /**
28      * 
29      * @param neighborListInUse
30      * @param cellIdentity
31      */
32     public RAN(String cellIdentity, NeighborListInUse neighborListInUse) {
33         super();
34         this.cellIdentity = cellIdentity;
35         this.neighborListInUse = neighborListInUse;
36     }
37
38     @JsonProperty("CellIdentity")
39     public String getCellIdentity() {
40         return cellIdentity;
41     }
42
43     @JsonProperty("CellIdentity")
44     public void setCellIdentity(String cellIdentity) {
45         this.cellIdentity = cellIdentity;
46     }
47
48     @JsonProperty("NeighborListInUse")
49     public NeighborListInUse getNeighborListInUse() {
50         return neighborListInUse;
51     }
52
53     @JsonProperty("NeighborListInUse")
54     public void setNeighborListInUse(NeighborListInUse neighborListInUse) {
55         this.neighborListInUse = neighborListInUse;
56     }
57
58         @Override
59         public String toString() {
60                 return "RAN [cellIdentity=" + cellIdentity + ", neighborListInUse=" + neighborListInUse + "]";
61         }
62 }