Adding Copyright to all Files
[ccsdk/features.git] / sdnr / northbound / oofpcipoc / consumer / src / main / java / org / onap / ccsdk / features / sdnr / northbound / oofpcipoc / handlenotif / pojos / X0005b9Lte.java
1 /*
2  * ============LICENSE_START=======================================================
3  * ONAP : ccsdk features
4  * ================================================================================
5  * Copyright (C) 2020 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  *     http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=======================================================
19  *
20  */
21
22 package org.onap.ccsdk.features.sdnr.northbound.oofpcipoc.handlenotif.pojos;
23
24 import java.math.BigInteger;
25
26 import com.fasterxml.jackson.annotation.JsonInclude;
27 import com.fasterxml.jackson.annotation.JsonProperty;
28 import com.fasterxml.jackson.annotation.JsonPropertyOrder;
29
30 @JsonInclude(JsonInclude.Include.NON_NULL)
31 @JsonPropertyOrder({
32     "phyCellIdInUse",
33     "pnfName"
34 })
35 public class X0005b9Lte {
36
37     @JsonProperty("phyCellIdInUse")
38     private String phyCellIdInUse;
39     @JsonProperty("pnfName")
40     private String pnfName;
41
42     /**
43      * No args constructor for use in serialization
44      *
45      */
46     public X0005b9Lte() {
47     }
48
49     /**
50      *
51      * @param bigInteger
52      * @param pnfName
53      */
54     public X0005b9Lte(String phyCellIdInUse, String pnfName) {
55         super();
56         this.phyCellIdInUse = phyCellIdInUse;
57         this.pnfName = pnfName;
58     }
59
60     @JsonProperty("phyCellIdInUse")
61     public String getPhyCellIdInUse() {
62         return phyCellIdInUse;
63     }
64
65     @JsonProperty("phyCellIdInUse")
66     public void setPhyCellIdInUse(String phyCellIdInUse) {
67         this.phyCellIdInUse = phyCellIdInUse;
68     }
69
70     @JsonProperty("pnfName")
71     public String getPnfName() {
72         return pnfName;
73     }
74
75     @JsonProperty("pnfName")
76     public void setPnfName(String pnfName) {
77         this.pnfName = pnfName;
78     }
79
80         @Override
81         public String toString() {
82                 return "X0005b9Lte [phyCellIdInUse=" + phyCellIdInUse + ", pnfName=" + pnfName + "]";
83         }
84
85 }