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