summaryrefslogtreecommitdiffstats
path: root/common/src/main/java/org/onap/so/beans/nsmf/SliceTaskParams.java
blob: f0857fc4585d8a2b9605d8138b7e59ec52289e93 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
/*-
 * ============LICENSE_START=======================================================
 * ONAP - SO
 * ================================================================================
 * Copyright (C) 2019 Huawei Technologies Co., Ltd. All rights reserved.
 * ================================================================================
 * Licensed under the Apache License, Version 2.0 (the "License")
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 * ============LICENSE_END=========================================================
 */

package org.onap.so.beans.nsmf;

import com.fasterxml.jackson.databind.ObjectMapper;
import com.google.gson.JsonObject;
import java.io.IOException;
import java.io.Serializable;
import java.util.HashMap;
import java.util.Map;

public class SliceTaskParams implements Serializable {

    private static final long serialVersionUID = -4389946152970978423L;

    private String serviceId;

    private String serviceName;

    private String nstId;

    private String nstName;

    private String tnScriptName;

    private String anScriptName;

    private String cnScriptName;

    private Map<String, Object> serviceProfile;

    private String suggestNsiId;

    private String suggestNsiName;

    private Map<String, Object> sliceProfileTn;

    private Map<String, Object> sliceProfileCn;

    private Map<String, Object> sliceProfileAn;

    private String tnSuggestNssiId;

    private String tnSuggestNssiName;

    private String tnProgress;

    private String tnStatus;

    private String tnStatusDescription;

    private String cnSuggestNssiId;

    private String cnSuggestNssiName;

    private String cnProgress;

    private String cnStatus;

    private String cnStatusDescription;

    private String anSuggestNssiId;

    private String anSuggestNssiName;

    private String anProgress;

    private String anStatus;

    private String anStatusDescription;

    public SliceTaskParams() {
        this.serviceProfile = new HashMap<>();
        this.sliceProfileAn = new HashMap<>();
        this.sliceProfileCn = new HashMap<>();
        this.sliceProfileTn = new HashMap<>();
    }

    public String getNstId() {
        return nstId;
    }

    public void setNstId(String nstId) {
        this.nstId = nstId;
    }

    public String getNstName() {
        return nstName;
    }

    public void setNstName(String nstName) {
        this.nstName = nstName;
    }

    public String getTnScriptName() {
        return tnScriptName;
    }

    public void setTnScriptName(String tnScriptName) {
        this.tnScriptName = tnScriptName;
    }

    public String getAnScriptName() {
        return anScriptName;
    }

    public void setAnScriptName(String anScriptName) {
        this.anScriptName = anScriptName;
    }

    public String getCnScriptName() {
        return cnScriptName;
    }

    public void setCnScriptName(String cnScriptName) {
        this.cnScriptName = cnScriptName;
    }

    public String getServiceId() {
        return serviceId;
    }

    public void setServiceId(String serviceId) {
        this.serviceId = serviceId;
    }

    public String getServiceName() {
        return serviceName;
    }

    public void setServiceName(String serviceName) {
        this.serviceName = serviceName;
    }

    public Map<String, Object> getServiceProfile() {
        return serviceProfile;
    }

    public void setServiceProfile(Map<String, Object> serviceProfile) {
        this.serviceProfile = serviceProfile;
    }

    public String getSuggestNsiId() {
        return suggestNsiId;
    }

    public void setSuggestNsiId(String suggestNsiId) {
        this.suggestNsiId = suggestNsiId;
    }

    public String getSuggestNsiName() {
        return suggestNsiName;
    }

    public void setSuggestNsiName(String suggestNsiName) {
        this.suggestNsiName = suggestNsiName;
    }

    public Map<String, Object> getSliceProfileTn() {
        return sliceProfileTn;
    }

    public void setSliceProfileTn(Map<String, Object> sliceProfileTn) {
        this.sliceProfileTn = sliceProfileTn;
    }

    public Map<String, Object> getSliceProfileCn() {
        return sliceProfileCn;
    }

    public void setSliceProfileCn(Map<String, Object> sliceProfileCn) {
        this.sliceProfileCn = sliceProfileCn;
    }

    public Map<String, Object> getSliceProfileAn() {
        return sliceProfileAn;
    }

    public void setSliceProfileAn(Map<String, Object> sliceProfileAn) {
        this.sliceProfileAn = sliceProfileAn;
    }

    public String getTnSuggestNssiId() {
        return tnSuggestNssiId;
    }

    public void setTnSuggestNssiId(String tnSuggestNssiId) {
        this.tnSuggestNssiId = tnSuggestNssiId;
    }

    public String getTnSuggestNssiName() {
        return tnSuggestNssiName;
    }

    public void setTnSuggestNssiName(String tnSuggestNssiName) {
        this.tnSuggestNssiName = tnSuggestNssiName;
    }

    public String getTnProgress() {
        return tnProgress;
    }

    public void setTnProgress(String tnProgress) {
        this.tnProgress = tnProgress;
    }

    public String getTnStatus() {
        return tnStatus;
    }

    public void setTnStatus(String tnStatus) {
        this.tnStatus = tnStatus;
    }

    public String getTnStatusDescription() {
        return tnStatusDescription;
    }

    public void setTnStatusDescription(String tnStatusDescription) {
        this.tnStatusDescription = tnStatusDescription;
    }

    public String getCnSuggestNssiId() {
        return cnSuggestNssiId;
    }

    public void setCnSuggestNssiId(String cnSuggestNssiId) {
        this.cnSuggestNssiId = cnSuggestNssiId;
    }

    public String getCnSuggestNssiName() {
        return cnSuggestNssiName;
    }

    public void setCnSuggestNssiName(String cnSuggestNssiName) {
        this.cnSuggestNssiName = cnSuggestNssiName;
    }

    public String getCnProgress() {
        return cnProgress;
    }

    public void setCnProgress(String cnProgress) {
        this.cnProgress = cnProgress;
    }

    public String getCnStatus() {
        return cnStatus;
    }

    public void setCnStatus(String cnStatus) {
        this.cnStatus = cnStatus;
    }

    public String getCnStatusDescription() {
        return cnStatusDescription;
    }

    public void setCnStatusDescription(String cnStatusDescription) {
        this.cnStatusDescription = cnStatusDescription;
    }

    public String getAnSuggestNssiId() {
        return anSuggestNssiId;
    }

    public void setAnSuggestNssiId(String anSuggestNssiId) {
        this.anSuggestNssiId = anSuggestNssiId;
    }

    public String getAnSuggestNssiName() {
        return anSuggestNssiName;
    }

    public void setAnSuggestNssiName(String anSuggestNssiName) {
        this.anSuggestNssiName = anSuggestNssiName;
    }

    public String getAnProgress() {
        return anProgress;
    }

    public void setAnProgress(String anProgress) {
        this.anProgress = anProgress;
    }

    public String getAnStatus() {
        return anStatus;
    }

    public void setAnStatus(String anStatus) {
        this.anStatus = anStatus;
    }

    public String getAnStatusDescription() {
        return anStatusDescription;
    }

    public void setAnStatusDescription(String anStatusDescription) {
        this.anStatusDescription = anStatusDescription;
    }

    public String convertToJson() {
        JsonObject jsonObject = new JsonObject();
        jsonObject.addProperty("ServiceId", serviceId);
        jsonObject.addProperty("ServiceName", serviceName);
        jsonObject.addProperty("NSTId", nstId);
        jsonObject.addProperty("NSTName", nstName);
        jsonObject.addProperty("TN.ScriptName", tnScriptName);
        jsonObject.addProperty("AN.ScriptName", anScriptName);
        jsonObject.addProperty("CN.ScriptName", cnScriptName);
        for (Map.Entry<String, Object> entry : serviceProfile.entrySet()) {
            jsonObject.addProperty("ServiceProfile." + entry.getKey(), entry.getValue().toString());
        }
        jsonObject.addProperty("suggestNSIId", suggestNsiId);
        jsonObject.addProperty("suggestNSIName", suggestNsiName);
        for (Map.Entry<String, Object> entry : sliceProfileTn.entrySet()) {
            jsonObject.addProperty("SliceProfile.TN." + entry.getKey(), entry.getValue().toString());
        }
        for (Map.Entry<String, Object> entry : sliceProfileCn.entrySet()) {
            jsonObject.addProperty("SliceProfile.CN." + entry.getKey(), entry.getValue().toString());
        }
        for (Map.Entry<String, Object> entry : sliceProfileAn.entrySet()) {
            jsonObject.addProperty("SliceProfile.AN." + entry.getKey(), entry.getValue().toString());
        }
        jsonObject.addProperty("TN.SuggestNSSIId", tnSuggestNssiId);
        jsonObject.addProperty("TN.SuggestNSSIName", tnSuggestNssiName);
        jsonObject.addProperty("TN.progress", tnProgress);
        jsonObject.addProperty("TN.status", tnStatus);
        jsonObject.addProperty("TN.statusDescription", tnStatusDescription);
        jsonObject.addProperty("CN.SuggestNSSIId", cnSuggestNssiId);
        jsonObject.addProperty("CN.SuggestNSSIName", cnSuggestNssiName);
        jsonObject.addProperty("CN.progress", cnProgress);
        jsonObject.addProperty("CN.status", cnStatus);
        jsonObject.addProperty("CN.statusDescription", cnStatusDescription);
        jsonObject.addProperty("AN.SuggestNSSIId", anSuggestNssiId);
        jsonObject.addProperty("AN.SuggestNSSIName", anSuggestNssiName);
        jsonObject.addProperty("AN.progress", anProgress);
        jsonObject.addProperty("AN.status", anStatus);
        jsonObject.addProperty("AN.statusDescription", anStatusDescription);

        return jsonObject.toString();
    }

    public void convertFromJson(String jsonString) throws IOException {
        ObjectMapper mapper = new ObjectMapper();
        Map<String, String> paramMap = (Map<String, String>) mapper.readValue(jsonString, Map.class);
        this.setServiceId(paramMap.get("ServiceId"));
        this.setServiceName(paramMap.get("ServiceName"));
        this.setNstId(paramMap.get("NSTId"));
        this.setNstName(paramMap.get("NSTName"));
        this.setTnScriptName(paramMap.get("TN.ScriptName"));
        this.setAnScriptName(paramMap.get("AN.ScriptName"));
        this.setCnScriptName(paramMap.get("CN.ScriptName"));
        Map<String, Object> serviceProfileMap = new HashMap<>();
        for (Map.Entry<String, String> entry : paramMap.entrySet()) {
            if (entry.getKey().startsWith("ServiceProfile.")) {
                serviceProfileMap.put(entry.getKey().replaceFirst("^ServiceProfile.", ""), entry.getValue());
            }
        }
        this.setServiceProfile(serviceProfileMap);
        this.setSuggestNsiId(paramMap.get("suggestNSIId"));
        this.setSuggestNsiName(paramMap.get("suggestNSIName"));
        Map<String, Object> sliceProfileTnMap = new HashMap<>();
        for (Map.Entry<String, String> entry : paramMap.entrySet()) {
            if (entry.getKey().startsWith("SliceProfile.TN.")) {
                sliceProfileTnMap.put(entry.getKey().replaceFirst("^SliceProfile.TN.", ""), entry.getValue());
            }
        }
        this.setSliceProfileTn(sliceProfileTnMap);
        Map<String, Object> sliceProfileCnMap = new HashMap<>();
        for (Map.Entry<String, String> entry : paramMap.entrySet()) {
            if (entry.getKey().startsWith("SliceProfile.CN.")) {
                sliceProfileCnMap.put(entry.getKey().replaceFirst("^SliceProfile.CN.", ""), entry.getValue());
            }
        }
        this.setSliceProfileCn(sliceProfileCnMap);
        Map<String, Object> sliceProfileAnMap = new HashMap<>();
        for (Map.Entry<String, String> entry : paramMap.entrySet()) {
            if (entry.getKey().startsWith("SliceProfile.AN.")) {
                sliceProfileAnMap.put(entry.getKey().replaceFirst("^SliceProfile.AN.", ""), entry.getValue());
            }
        }
        this.setSliceProfileAn(sliceProfileAnMap);
        this.setTnSuggestNssiId(paramMap.get("TN.SuggestNSSIId"));
        this.setTnSuggestNssiName(paramMap.get("TN.SuggestNSSIName"));
        this.setTnProgress(paramMap.get("TN.progress"));
        this.setTnStatus(paramMap.get("TN.status"));
        this.setTnStatusDescription(paramMap.get("TN.statusDescription"));
        this.setCnSuggestNssiId(paramMap.get("CN.SuggestNSSIId"));
        this.setCnSuggestNssiName(paramMap.get("CN.SuggestNSSIName"));
        this.setCnProgress(paramMap.get("CN.progress"));
        this.setCnStatus(paramMap.get("CN.status"));
        this.setCnStatusDescription(paramMap.get("CN.statusDescription"));
        this.setAnSuggestNssiId(paramMap.get("AN.SuggestNSSIId"));
        this.setAnSuggestNssiName(paramMap.get("AN.SuggestNSSIName"));
        this.setAnProgress(paramMap.get("AN.progress"));
        this.setAnStatus(paramMap.get("AN.status"));
        this.setAnStatusDescription(paramMap.get("AN.statusDescription"));
    }
}