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