2 package org.onap.ccsdk.features.sdnr.northbound.oofpcipoc.handlenotif.pojos;
4 import java.math.BigInteger;
6 import com.fasterxml.jackson.annotation.JsonInclude;
7 import com.fasterxml.jackson.annotation.JsonProperty;
8 import com.fasterxml.jackson.annotation.JsonPropertyOrder;
10 @JsonInclude(JsonInclude.Include.NON_NULL)
15 public class X0005b9Lte {
17 @JsonProperty("phyCellIdInUse")
18 private String phyCellIdInUse;
19 @JsonProperty("pnfName")
20 private String pnfName;
23 * No args constructor for use in serialization
34 public X0005b9Lte(String phyCellIdInUse, String pnfName) {
36 this.phyCellIdInUse = phyCellIdInUse;
37 this.pnfName = pnfName;
40 @JsonProperty("phyCellIdInUse")
41 public String getPhyCellIdInUse() {
42 return phyCellIdInUse;
45 @JsonProperty("phyCellIdInUse")
46 public void setPhyCellIdInUse(String phyCellIdInUse) {
47 this.phyCellIdInUse = phyCellIdInUse;
50 @JsonProperty("pnfName")
51 public String getPnfName() {
55 @JsonProperty("pnfName")
56 public void setPnfName(String pnfName) {
57 this.pnfName = pnfName;
61 public String toString() {
62 return "X0005b9Lte [phyCellIdInUse=" + phyCellIdInUse + ", pnfName=" + pnfName + "]";