def38a3dbb772cd20ee4755695adcd5600e82142
[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     "LTE"
11 })
12 public class CellConfig {
13
14     @JsonProperty("LTE")
15     private LTE lTE;
16
17     /**
18      * No args constructor for use in serialization
19      * 
20      */
21     public CellConfig() {
22     }
23
24     /**
25      * 
26      * @param lTE
27      */
28     public CellConfig(LTE lTE) {
29         super();
30         this.lTE = lTE;
31     }
32
33     @JsonProperty("LTE")
34     public LTE getLTE() {
35         return lTE;
36     }
37
38     @JsonProperty("LTE")
39     public void setLTE(LTE lTE) {
40         this.lTE = lTE;
41     }
42
43         @Override
44         public String toString() {
45                 return "CellConfig [lTE=" + lTE + "]";
46         }
47
48 }