aboutsummaryrefslogtreecommitdiffstats
path: root/sdnr/northbound/oofpcipoc/consumer/src/main/java/org/onap/ccsdk/features/sdnr/northbound/oofpcipoc/handlenotif/pojos/X0005b9Lte.java
blob: 98cc4500a2f71ba4f28e7cb48204eab45540eaa4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
package org.onap.ccsdk.features.sdnr.northbound.oofpcipoc.handlenotif.pojos;

import java.math.BigInteger;

import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;

@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonPropertyOrder({
    "phyCellIdInUse",
    "pnfName"
})
public class X0005b9Lte {

    @JsonProperty("phyCellIdInUse")
    private String phyCellIdInUse;
    @JsonProperty("pnfName")
    private String pnfName;

    /**
     * No args constructor for use in serialization
     * 
     */
    public X0005b9Lte() {
    }

    /**
     * 
     * @param bigInteger
     * @param pnfName
     */
    public X0005b9Lte(String phyCellIdInUse, String pnfName) {
        super();
        this.phyCellIdInUse = phyCellIdInUse;
        this.pnfName = pnfName;
    }

    @JsonProperty("phyCellIdInUse")
    public String getPhyCellIdInUse() {
        return phyCellIdInUse;
    }

    @JsonProperty("phyCellIdInUse")
    public void setPhyCellIdInUse(String phyCellIdInUse) {
        this.phyCellIdInUse = phyCellIdInUse;
    }

    @JsonProperty("pnfName")
    public String getPnfName() {
        return pnfName;
    }

    @JsonProperty("pnfName")
    public void setPnfName(String pnfName) {
        this.pnfName = pnfName;
    }

	@Override
	public String toString() {
		return "X0005b9Lte [phyCellIdInUse=" + phyCellIdInUse + ", pnfName=" + pnfName + "]";
	}

}