e1585cdba2e01e5f53c4cbc082d4a79e1524fe61
[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     "pnfName",
11     "enable",
12     "alias",
13     "mustInclude",
14     "plmnid",
15     "cid",
16     "phyCellId",
17     "blacklisted"
18 })
19 public class LTENeighborListInUseLTECell {
20
21     @JsonProperty("pnfName")
22     private String pnfName;
23     @JsonProperty("enable")
24     private String enable;
25     @JsonProperty("alias")
26     private String alias;
27     @JsonProperty("mustInclude")
28     private String mustInclude;
29     @JsonProperty("plmnid")
30     private String plmnid;
31     @JsonProperty("cid")
32     private String cid;
33     @JsonProperty("phyCellId")
34     private String phyCellId;
35     @JsonProperty("blacklisted")
36     private String blacklisted;
37
38     /**
39      * No args constructor for use in serialization
40      * 
41      */
42     public LTENeighborListInUseLTECell() {
43     }
44
45     /**
46      * 
47      * @param mustInclude
48      * @param phyCellId
49      * @param alias
50      * @param enable
51      * @param blacklisted
52      * @param cid
53      * @param pnfName
54      * @param plmnid
55      */
56     public LTENeighborListInUseLTECell(String pnfName, String enable, String alias, String mustInclude, String plmnid, String cid, String phyCellId, String blacklisted) {
57         super();
58         this.pnfName = pnfName;
59         this.enable = enable;
60         this.alias = alias;
61         this.mustInclude = mustInclude;
62         this.plmnid = plmnid;
63         this.cid = cid;
64         this.phyCellId = phyCellId;
65         this.blacklisted = blacklisted;
66     }
67
68     @JsonProperty("pnfName")
69     public String getPnfName() {
70         return pnfName;
71     }
72
73     @JsonProperty("pnfName")
74     public void setPnfName(String pnfName) {
75         this.pnfName = pnfName;
76     }
77
78     @JsonProperty("enable")
79     public String getEnable() {
80         return enable;
81     }
82
83     @JsonProperty("enable")
84     public void setEnable(String enable) {
85         this.enable = enable;
86     }
87
88     @JsonProperty("alias")
89     public String getAlias() {
90         return alias;
91     }
92
93     @JsonProperty("alias")
94     public void setAlias(String alias) {
95         this.alias = alias;
96     }
97
98     @JsonProperty("mustInclude")
99     public String getMustInclude() {
100         return mustInclude;
101     }
102
103     @JsonProperty("mustInclude")
104     public void setMustInclude(String mustInclude) {
105         this.mustInclude = mustInclude;
106     }
107
108     @JsonProperty("plmnid")
109     public String getPlmnid() {
110         return plmnid;
111     }
112
113     @JsonProperty("plmnid")
114     public void setPlmnid(String plmnid) {
115         this.plmnid = plmnid;
116     }
117
118     @JsonProperty("cid")
119     public String getCid() {
120         return cid;
121     }
122
123     @JsonProperty("cid")
124     public void setCid(String cid) {
125         this.cid = cid;
126     }
127
128     @JsonProperty("phyCellId")
129     public String getPhyCellId() {
130         return phyCellId;
131     }
132
133     @JsonProperty("phyCellId")
134     public void setPhyCellId(String phyCellId) {
135         this.phyCellId = phyCellId;
136     }
137
138     @JsonProperty("blacklisted")
139     public String getBlacklisted() {
140         return blacklisted;
141     }
142
143     @JsonProperty("blacklisted")
144     public void setBlacklisted(String blacklisted) {
145         this.blacklisted = blacklisted;
146     }
147
148         @Override
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 + "]";
153         }
154
155 }