4a74ed291cc3451b23992065faf6dcd752165a03
[ccsdk/features.git] /
1
2 package org.onap.ccsdk.features.sdnr.northbound.oofpcipoc.handlenotif.pojos;
3
4 import com.fasterxml.jackson.annotation.JsonInclude;
5 import com.fasterxml.jackson.annotation.JsonProperty;
6 import com.fasterxml.jackson.annotation.JsonPropertyOrder;
7
8 @JsonInclude(JsonInclude.Include.NON_NULL)
9 @JsonPropertyOrder({
10     "alias",
11     "X0005b9Lte",
12     "CellConfig"
13 })
14 public class FAPServiceList {
15
16     @JsonProperty("alias")
17     private String alias;
18     @JsonProperty("X0005b9Lte")
19     private X0005b9Lte x0005b9Lte;
20     @JsonProperty("CellConfig")
21     private CellConfig cellConfig;
22
23     /**
24      * No args constructor for use in serialization
25      * 
26      */
27     public FAPServiceList() {
28     }
29
30     /**
31      * 
32      * @param alias
33      * @param cellConfig
34      * @param x0005b9Lte
35      */
36     public FAPServiceList(String alias, X0005b9Lte x0005b9Lte, CellConfig cellConfig) {
37         super();
38         this.alias = alias;
39         this.x0005b9Lte = x0005b9Lte;
40         this.cellConfig = cellConfig;
41     }
42
43     @JsonProperty("alias")
44     public String getAlias() {
45         return alias;
46     }
47
48     @JsonProperty("alias")
49     public void setAlias(String alias) {
50         this.alias = alias;
51     }
52
53     @JsonProperty("X0005b9Lte")
54     public X0005b9Lte getX0005b9Lte() {
55         return x0005b9Lte;
56     }
57
58     @JsonProperty("X0005b9Lte")
59     public void setX0005b9Lte(X0005b9Lte x0005b9Lte) {
60         this.x0005b9Lte = x0005b9Lte;
61     }
62
63     @JsonProperty("CellConfig")
64     public CellConfig getCellConfig() {
65         return cellConfig;
66     }
67
68     @JsonProperty("CellConfig")
69     public void setCellConfig(CellConfig cellConfig) {
70         this.cellConfig = cellConfig;
71     }
72
73         @Override
74         public String toString() {
75                 return "FAPServiceList [alias=" + alias + ", x0005b9Lte=" + x0005b9Lte + ", cellConfig=" + cellConfig + "]";
76         }
77 }