Merge "Lower code duplication of AaiClient calls in BBInputSetupUtils"
[so.git] / common / src / main / java / org / onap / so / beans / nsmf / PerfReqEmbbList.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - SO
4  * ================================================================================
5  * Copyright (C) 2020 Huawei Technologies Co., Ltd. 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 package org.onap.so.beans.nsmf;
22
23 import com.fasterxml.jackson.annotation.JsonInclude;
24
25 @JsonInclude(JsonInclude.Include.NON_NULL)
26 public class PerfReqEmbbList {
27
28     @JsonInclude(JsonInclude.Include.NON_DEFAULT)
29     private int expDataRateDL;
30
31     @JsonInclude(JsonInclude.Include.NON_DEFAULT)
32     private int expDataRateUL;
33
34     @JsonInclude(JsonInclude.Include.NON_DEFAULT)
35     private int areaTrafficCapDL;
36
37     @JsonInclude(JsonInclude.Include.NON_DEFAULT)
38     private int areaTrafficCapUL;
39
40     @JsonInclude(JsonInclude.Include.NON_DEFAULT)
41     private int activityFactor;
42
43     public int getExpDataRateDL() {
44         return expDataRateDL;
45     }
46
47     public void setExpDataRateDL(int expDataRateDL) {
48         this.expDataRateDL = expDataRateDL;
49     }
50
51     public int getExpDataRateUL() {
52         return expDataRateUL;
53     }
54
55     public void setExpDataRateUL(int expDataRateUL) {
56         this.expDataRateUL = expDataRateUL;
57     }
58
59     public int getAreaTrafficCapDL() {
60         return areaTrafficCapDL;
61     }
62
63     public void setAreaTrafficCapDL(int areaTrafficCapDL) {
64         this.areaTrafficCapDL = areaTrafficCapDL;
65     }
66
67     public int getAreaTrafficCapUL() {
68         return areaTrafficCapUL;
69     }
70
71     public void setAreaTrafficCapUL(int areaTrafficCapUL) {
72         this.areaTrafficCapUL = areaTrafficCapUL;
73     }
74
75     public int getActivityFactor() {
76         return activityFactor;
77     }
78
79     public void setActivityFactor(int activityFactor) {
80         this.activityFactor = activityFactor;
81     }
82 }