2 package org.onap.ccsdk.features.sdnr.northbound.oofpcipoc.handlenotif.pojos;
4 import com.fasterxml.jackson.annotation.JsonInclude;
5 import com.fasterxml.jackson.annotation.JsonProperty;
6 import com.fasterxml.jackson.annotation.JsonPropertyOrder;
8 @JsonInclude(JsonInclude.Include.NON_NULL)
14 public class FAPServiceList {
16 @JsonProperty("alias")
18 @JsonProperty("X0005b9Lte")
19 private X0005b9Lte x0005b9Lte;
20 @JsonProperty("CellConfig")
21 private CellConfig cellConfig;
24 * No args constructor for use in serialization
27 public FAPServiceList() {
36 public FAPServiceList(String alias, X0005b9Lte x0005b9Lte, CellConfig cellConfig) {
39 this.x0005b9Lte = x0005b9Lte;
40 this.cellConfig = cellConfig;
43 @JsonProperty("alias")
44 public String getAlias() {
48 @JsonProperty("alias")
49 public void setAlias(String alias) {
53 @JsonProperty("X0005b9Lte")
54 public X0005b9Lte getX0005b9Lte() {
58 @JsonProperty("X0005b9Lte")
59 public void setX0005b9Lte(X0005b9Lte x0005b9Lte) {
60 this.x0005b9Lte = x0005b9Lte;
63 @JsonProperty("CellConfig")
64 public CellConfig getCellConfig() {
68 @JsonProperty("CellConfig")
69 public void setCellConfig(CellConfig cellConfig) {
70 this.cellConfig = cellConfig;
74 public String toString() {
75 return "FAPServiceList [alias=" + alias + ", x0005b9Lte=" + x0005b9Lte + ", cellConfig=" + cellConfig + "]";