5702c141e3d88d51dccbb64d8c32853d2ce5abd9
[usecase-ui/server.git] /
1 /**
2  * Copyright 2016-2017 ZTE Corporation.
3  * <p>
4  * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with
5  * the License. You may obtain a copy of the License at
6  * <p>
7  * http://www.apache.org/licenses/LICENSE-2.0
8  * <p>
9  * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on
10  * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the
11  * specific language governing permissions and limitations under the License.
12  */
13 package org.onap.usecaseui.server.service.slicingdomain.aai.bean;
14
15 import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
16 import com.fasterxml.jackson.annotation.JsonProperty;
17
18 @JsonIgnoreProperties(ignoreUnknown = true)
19 public class AAIServiceProfiles {
20
21     @JsonProperty("profile-id")
22     private String profileId;
23
24     @JsonProperty("latency")
25     private int latency;
26
27     @JsonProperty("max-number-of-UEs")
28     private int maxNumberOfUEs;
29
30     @JsonProperty("coverage-area-TA-list")
31     private String coverageAreaTAList;
32
33     @JsonProperty("ue-mobility-level")
34     private String ueMobilityLevel;
35
36     @JsonProperty("resource-sharing-level")
37     private String resourceSharingLevel;
38
39     @JsonProperty("exp-data-rate-UL")
40     private int expDataRateUL;
41
42     @JsonProperty("exp-data-rate-DL")
43     private int expDataRateDL;
44
45     @JsonProperty("area-traffic-cap-UL")
46     private int areaTrafficCapUL;
47
48     @JsonProperty("area-traffic-cap-DL")
49     private int areaTrafficCapDL;
50
51     @JsonProperty("activity-factor")
52     private int activityFactor;
53
54     @JsonProperty("jitter")
55     private int jitter;
56
57     @JsonProperty("survival-time")
58     private int survivalTime;
59
60     @JsonProperty("cs-availability")
61     private int csAvailability;
62
63     @JsonProperty("reliability")
64     private int reliability;
65
66     @JsonProperty("exp-data-rate")
67     private int expDataRate;
68
69     @JsonProperty("traffic-density")
70     private int trafficDensity;
71
72     @JsonProperty("conn-density")
73     private int connDensity;
74
75     @JsonProperty("resource-version")
76     private String resourceVersion;
77
78     public String getProfileId() {
79         return profileId;
80     }
81
82     public void setProfileId(String profileId) {
83         this.profileId = profileId;
84     }
85
86     public int getLatency() {
87         return latency;
88     }
89
90     public void setLatency(int latency) {
91         this.latency = latency;
92     }
93
94     public int getMaxNumberOfUEs() {
95         return maxNumberOfUEs;
96     }
97
98     public void setMaxNumberOfUEs(int maxNumberOfUEs) {
99         this.maxNumberOfUEs = maxNumberOfUEs;
100     }
101
102     public String getCoverageAreaTAList() {
103         return coverageAreaTAList;
104     }
105
106     public void setCoverageAreaTAList(String coverageAreaTAList) {
107         this.coverageAreaTAList = coverageAreaTAList;
108     }
109
110     public String getUeMobilityLevel() {
111         return ueMobilityLevel;
112     }
113
114     public void setUeMobilityLevel(String ueMobilityLevel) {
115         this.ueMobilityLevel = ueMobilityLevel;
116     }
117
118     public String getResourceSharingLevel() {
119         return resourceSharingLevel;
120     }
121
122     public void setResourceSharingLevel(String resourceSharingLevel) {
123         this.resourceSharingLevel = resourceSharingLevel;
124     }
125
126     public int getExpDataRateUL() {
127         return expDataRateUL;
128     }
129
130     public void setExpDataRateUL(int expDataRateUL) {
131         this.expDataRateUL = expDataRateUL;
132     }
133
134     public int getExpDataRateDL() {
135         return expDataRateDL;
136     }
137
138     public void setExpDataRateDL(int expDataRateDL) {
139         this.expDataRateDL = expDataRateDL;
140     }
141
142     public int getAreaTrafficCapUL() {
143         return areaTrafficCapUL;
144     }
145
146     public void setAreaTrafficCapUL(int areaTrafficCapUL) {
147         this.areaTrafficCapUL = areaTrafficCapUL;
148     }
149
150     public int getAreaTrafficCapDL() {
151         return areaTrafficCapDL;
152     }
153
154     public void setAreaTrafficCapDL(int areaTrafficCapDL) {
155         this.areaTrafficCapDL = areaTrafficCapDL;
156     }
157
158     public int getActivityFactor() {
159         return activityFactor;
160     }
161
162     public void setActivityFactor(int activityFactor) {
163         this.activityFactor = activityFactor;
164     }
165
166     public int getJitter() {
167         return jitter;
168     }
169
170     public void setJitter(int jitter) {
171         this.jitter = jitter;
172     }
173
174     public int getSurvivalTime() {
175         return survivalTime;
176     }
177
178     public void setSurvivalTime(int survivalTime) {
179         this.survivalTime = survivalTime;
180     }
181
182     public int getCsAvailability() {
183         return csAvailability;
184     }
185
186     public void setCsAvailability(int csAvailability) {
187         this.csAvailability = csAvailability;
188     }
189
190     public int getReliability() {
191         return reliability;
192     }
193
194     public void setReliability(int reliability) {
195         this.reliability = reliability;
196     }
197
198     public int getExpDataRate() {
199         return expDataRate;
200     }
201
202     public void setExpDataRate(int expDataRate) {
203         this.expDataRate = expDataRate;
204     }
205
206     public int getTrafficDensity() {
207         return trafficDensity;
208     }
209
210     public void setTrafficDensity(int trafficDensity) {
211         this.trafficDensity = trafficDensity;
212     }
213
214     public int getConnDensity() {
215         return connDensity;
216     }
217
218     public void setConnDensity(int connDensity) {
219         this.connDensity = connDensity;
220     }
221
222     public String getResourceVersion() {
223         return resourceVersion;
224     }
225
226     public void setResourceVersion(String resourceVersion) {
227         this.resourceVersion = resourceVersion;
228     }
229
230
231 }