summaryrefslogtreecommitdiffstats
path: root/ms/generic-resource-api/src/main/java/org/onap/sdnc/apps/ms/gra/controllers/ConfigApiController.java
blob: 26b6dcfafa134c12dc7cdbb9044df55d7334ef33 (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
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
/*-
 * ============LICENSE_START=======================================================
 * ONAP - SDNC
 * ================================================================================
 * Copyright (C) 2020 AT&T Intellectual Property. 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.sdnc.apps.ms.gra.controllers;

import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.core.JsonProcessingException;
import com.fasterxml.jackson.databind.ObjectMapper;
import org.onap.ccsdk.apps.services.RestApplicationException;
import org.onap.ccsdk.apps.services.RestException;
import org.onap.ccsdk.apps.services.RestProtocolError;
import org.onap.ccsdk.apps.services.RestProtocolException;
import org.onap.sdnc.apps.ms.gra.data.ConfigPreloadData;
import org.onap.sdnc.apps.ms.gra.data.ConfigPreloadDataRepository;
import org.onap.sdnc.apps.ms.gra.data.ConfigServices;
import org.onap.sdnc.apps.ms.gra.data.ConfigServicesRepository;
import org.onap.sdnc.apps.ms.gra.swagger.ConfigApi;
import org.onap.sdnc.apps.ms.gra.swagger.model.*;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.autoconfigure.domain.EntityScan;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.http.HttpStatus;
import org.springframework.http.ResponseEntity;
import org.springframework.stereotype.Controller;

import javax.servlet.http.HttpServletRequest;
import javax.validation.Valid;
import java.util.ArrayList;
import java.util.Iterator;
import java.util.LinkedList;
import java.util.List;
import java.util.Optional;
import java.util.concurrent.atomic.AtomicBoolean;
import java.util.stream.Collectors;
import java.util.stream.Stream;

@Controller
@ComponentScan(basePackages = {"org.onap.sdnc.apps.ms.gra.*"})
@EntityScan("org.onap.sdnc.apps.ms.gra.springboot.*")
public class ConfigApiController implements ConfigApi {
    private static final Logger log = LoggerFactory.getLogger(ConfigApiController.class);

    private final ObjectMapper objectMapper;

    private final HttpServletRequest request;

    @Autowired
    private ConfigPreloadDataRepository configPreloadDataRepository;

    @Autowired
    private ConfigServicesRepository configServicesRepository;

    @Autowired
    public ConfigApiController(ObjectMapper objectMapper, HttpServletRequest request) {
        objectMapper.setSerializationInclusion(JsonInclude.Include.NON_EMPTY);
        objectMapper.setSerializationInclusion(JsonInclude.Include.NON_NULL);
        this.objectMapper = objectMapper;
        this.request = request;
    }

    @Override
    public Optional<ObjectMapper> getObjectMapper() {
        return Optional.ofNullable(objectMapper);
    }

    @Override
    public Optional<HttpServletRequest> getRequest() {
        return Optional.ofNullable(request);
    }

    @Override
    public ResponseEntity<Void> configGENERICRESOURCEAPIpreloadInformationDelete() {
        configPreloadDataRepository.deleteAll();
        return (new ResponseEntity<>(HttpStatus.NO_CONTENT));
    }

    @Override
    public ResponseEntity<GenericResourceApiPreloadModelInformation> configGENERICRESOURCEAPIpreloadInformationGet() throws RestApplicationException {
        GenericResourceApiPreloadModelInformation genericResourceApiPreloadModelInformation = new GenericResourceApiPreloadModelInformation();

        if (configPreloadDataRepository.count() == 0) {
            throw new RestApplicationException("data-missing", "Request could not be completed because the relevant data model content does not exist", HttpStatus.NOT_FOUND.value());
        }

        for (ConfigPreloadData configPreloadData : configPreloadDataRepository.findAll()) {
            GenericResourceApiPreloadmodelinformationPreloadList preloadListItem = new GenericResourceApiPreloadmodelinformationPreloadList();

            preloadListItem.setPreloadId(configPreloadData.getPreloadId());
            preloadListItem.setPreloadType(configPreloadData.getPreloadType());
            try {
                preloadListItem.setPreloadData(objectMapper.readValue(configPreloadData.getPreloadData(), GenericResourceApiPreloaddataPreloadData.class));
            } catch (JsonProcessingException e) {
                log.error("Could not convert preload data", e);
                throw new RestApplicationException("data-conversion", "Request could not be completed due to internal error", e, HttpStatus.INTERNAL_SERVER_ERROR.value());
            }
            genericResourceApiPreloadModelInformation.addPreloadListItem(preloadListItem);
        }


        return new ResponseEntity<>(genericResourceApiPreloadModelInformation, HttpStatus.OK);
    }

    @Override
    public ResponseEntity<Void> configGENERICRESOURCEAPIpreloadInformationPost(@Valid GenericResourceApiPreloadModelInformation graPreloadModelInfo) throws RestApplicationException, RestProtocolException {

        List<GenericResourceApiPreloadmodelinformationPreloadList> preloadList = graPreloadModelInfo.getPreloadList();
        List<ConfigPreloadData> newPreloadData = new LinkedList<>();

        if (preloadList != null) {
            // Verification pass - if any items already exist, return an error
            for (GenericResourceApiPreloadmodelinformationPreloadList curItem : preloadList) {

                List<ConfigPreloadData> curPreloadData = configPreloadDataRepository.findByPreloadIdAndPreloadType(curItem.getPreloadId(), curItem.getPreloadType());
                if ((curPreloadData != null) && (!curPreloadData.isEmpty())) {
                    log.error("Preload data already exists for {}:{}", curItem.getPreloadId(), curItem.getPreloadType());
                    throw new RestProtocolException("data-exists", "Data already exists for " + curItem.getPreloadId() + ":" + curItem.getPreloadType(), HttpStatus.CONFLICT.value());
                } else {
                    try {
                        newPreloadData.add(new ConfigPreloadData(curItem.getPreloadId(), curItem.getPreloadType(), objectMapper.writeValueAsString(curItem.getPreloadData())));
                    } catch (JsonProcessingException e) {
                        log.error("Cannot convert preload data");
                        throw new RestApplicationException("data-conversion", "Request could not be completed due to internal error", e, HttpStatus.INTERNAL_SERVER_ERROR.value());

                    }
                }
            }

            // Update pass
            for (ConfigPreloadData newDataItem : newPreloadData) {
                log.info("Adding preload data for {}:{}", newDataItem.getPreloadId(), newDataItem.getPreloadType());
                configPreloadDataRepository.save(newDataItem);
            }
        } else {
            throw new RestProtocolException("data-missing", "No preload-list entries found to add", HttpStatus.CONFLICT.value());
        }

        return new ResponseEntity<>(HttpStatus.CREATED);
    }

    @Override
    public ResponseEntity<Void> configGENERICRESOURCEAPIpreloadInformationPut(@Valid GenericResourceApiPreloadModelInformation graPreloadModelInfo) throws RestApplicationException {

        boolean addedNew = false;
        List<GenericResourceApiPreloadmodelinformationPreloadList> preloadList = graPreloadModelInfo.getPreloadList();

        if (preloadList != null) {
            Iterator<GenericResourceApiPreloadmodelinformationPreloadList> iter = preloadList.iterator();
            while (iter.hasNext()) {
                GenericResourceApiPreloadmodelinformationPreloadList curItem = iter.next();
                List<ConfigPreloadData> curPreloadData = configPreloadDataRepository.findByPreloadIdAndPreloadType(curItem.getPreloadId(), curItem.getPreloadType());
                if ((curPreloadData == null) || curPreloadData.isEmpty()) {
                    addedNew = true;
                }

                try {
                    configPreloadDataRepository.save(new ConfigPreloadData(curItem.getPreloadId(), curItem.getPreloadType(), objectMapper.writeValueAsString(curItem.getPreloadData())));
                } catch (JsonProcessingException e) {
                    log.error("Cannot convert preload data", e);
                    throw new RestApplicationException("data-conversion", "Request could not be completed due to internal error", e, HttpStatus.INTERNAL_SERVER_ERROR.value());

                }
            }
        }

        if (addedNew) {
            return new ResponseEntity<>(HttpStatus.CREATED);
        } else {
            return new ResponseEntity<>(HttpStatus.NO_CONTENT);
        }

    }

    @Override
    public ResponseEntity<Void> configGENERICRESOURCEAPIpreloadInformationPreloadListPost(@Valid GenericResourceApiPreloadmodelinformationPreloadList preloadListItem) throws RestProtocolException {

        throw new RestProtocolException("data-missing", "Missing key for list \"preload-list\"", HttpStatus.NOT_FOUND.value());
    }


    @Override
    public ResponseEntity<Void> configGENERICRESOURCEAPIpreloadInformationPreloadListPreloadIdPreloadTypeDelete(String preloadId, String preloadType) {
        configPreloadDataRepository.deleteByPreloadIdAndPreloadType(preloadId, preloadType);
        return new ResponseEntity<>(HttpStatus.NO_CONTENT);
    }

    @Override
    public ResponseEntity<GenericResourceApiPreloadmodelinformationPreloadList> configGENERICRESOURCEAPIpreloadInformationPreloadListPreloadIdPreloadTypeGet(String preloadId, String preloadType) throws RestApplicationException {
        List<ConfigPreloadData> preloadData = configPreloadDataRepository.findByPreloadIdAndPreloadType(preloadId, preloadType);
        if (preloadData != null) {
            if (!preloadData.isEmpty()) {
                ConfigPreloadData preloadDataItem = preloadData.get(0);
                GenericResourceApiPreloadmodelinformationPreloadList preloadDataList = new GenericResourceApiPreloadmodelinformationPreloadList();
                preloadDataList.setPreloadId(preloadDataItem.getPreloadId());
                preloadDataList.setPreloadType(preloadDataItem.getPreloadType());
                try {
                    preloadDataList.setPreloadData(objectMapper.readValue(preloadDataItem.getPreloadData(), GenericResourceApiPreloaddataPreloadData.class));
                } catch (JsonProcessingException e) {
                    log.error("Cannot convert preload data", e);
                    throw new RestApplicationException("data-conversion", "Request could not be completed due to internal error", e, HttpStatus.INTERNAL_SERVER_ERROR.value());
                }
                return new ResponseEntity<>(preloadDataList, HttpStatus.OK);
            }
        }
        return new ResponseEntity<>(HttpStatus.NOT_FOUND);
    }

    @Override
    public ResponseEntity<Void> configGENERICRESOURCEAPIpreloadInformationPreloadListPreloadIdPreloadTypePost(String preloadId, String preloadType, @Valid GenericResourceApiPreloadmodelinformationPreloadList preloadListItem) throws RestApplicationException, RestProtocolException {
        List<ConfigPreloadData> preloadDataItems = configPreloadDataRepository.findByPreloadIdAndPreloadType(preloadId, preloadType);

        if ((preloadDataItems != null) && !preloadDataItems.isEmpty()) {
            log.error("Preload data already exists for {}:{}", preloadId, preloadType);
            throw new RestProtocolException("data-exists", "Data already exists for " + preloadId + ":" + preloadType, HttpStatus.CONFLICT.value());
        }

        try {
            log.info("Adding preload data for {}:{}", preloadId, preloadType);
            configPreloadDataRepository.save(new ConfigPreloadData(preloadId, preloadType, objectMapper.writeValueAsString(preloadListItem.getPreloadData())));
        } catch (JsonProcessingException e) {
            log.error("Cannot convert preload data", e);
            throw new RestApplicationException("data-conversion", "Request could not be completed due to internal error", e, HttpStatus.INTERNAL_SERVER_ERROR.value());

        }
        return new ResponseEntity<>(HttpStatus.CREATED);
    }

    @Override
    public ResponseEntity<Void> configGENERICRESOURCEAPIpreloadInformationPreloadListPreloadIdPreloadTypePut(String preloadId, String preloadType, @Valid GenericResourceApiPreloadmodelinformationPreloadList preloadListItem) throws RestApplicationException, RestProtocolException {
        List<ConfigPreloadData> preloadDataItems = configPreloadDataRepository.findByPreloadIdAndPreloadType(preloadId, preloadType);
        boolean dataExists = false;
        if ((preloadDataItems != null) && !preloadDataItems.isEmpty()) {
            dataExists = true;
        }

        if ((preloadListItem.getPreloadId() == null) ||
                (preloadListItem.getPreloadType() == null) ||
                (preloadListItem.getPreloadData() == null)) {
            log.error("Invalid list item received: {}", preloadListItem);
            throw new RestProtocolException("bad-attribute", "Invalid data received", HttpStatus.BAD_REQUEST.value());
        }

        try {
            if (dataExists) {
                log.info("Updating preload data for {}:{} -> {}", preloadId, preloadType, objectMapper.writeValueAsString(preloadListItem));

            } else {
                log.info("Adding preload data for {}:{}", preloadId, preloadType);
            }

            configPreloadDataRepository.save(new ConfigPreloadData(preloadId, preloadType, objectMapper.writeValueAsString(preloadListItem.getPreloadData())));
        } catch (JsonProcessingException e) {
            log.error("Cannot convert preload data", e);
            throw new RestApplicationException("data-conversion", "Request could not be completed due to internal error", e, HttpStatus.INTERNAL_SERVER_ERROR.value());

        }

        if (dataExists) {
            return new ResponseEntity<>(HttpStatus.NO_CONTENT);
        } else {
            return new ResponseEntity<>(HttpStatus.CREATED);
        }
    }


    @Override
    public ResponseEntity<Void> configGENERICRESOURCEAPIpreloadInformationPreloadListPreloadIdPreloadTypePreloadDataDelete(String preloadId, String preloadType) throws RestProtocolException {
        List<ConfigPreloadData> preloadData = configPreloadDataRepository.findByPreloadIdAndPreloadType(preloadId, preloadType);

        if ((preloadData == null) || preloadData.isEmpty()) {
            throw new RestProtocolException("data-missing", "No preload entry found", HttpStatus.NOT_FOUND.value());
        }

        ConfigPreloadData preloadDataItem = preloadData.get(0);

        if (preloadDataItem.getPreloadData() == null) {
            throw new RestProtocolException("data-missing", "No preload-data found", HttpStatus.NOT_FOUND.value());
        }
        preloadDataItem.setPreloadData(null);
        configPreloadDataRepository.save(preloadDataItem);


        return new ResponseEntity<>(HttpStatus.NO_CONTENT);
    }


    @Override
    public ResponseEntity<GenericResourceApiPreloaddataPreloadData> configGENERICRESOURCEAPIpreloadInformationPreloadListPreloadIdPreloadTypePreloadDataGet(String preloadId, String preloadType) throws RestApplicationException, RestProtocolException {
        List<ConfigPreloadData> preloadData = configPreloadDataRepository.findByPreloadIdAndPreloadType(preloadId, preloadType);

        if ((preloadData == null) || preloadData.isEmpty()) {
            throw new RestProtocolException("data-missing", "No preload entry found", HttpStatus.NOT_FOUND.value());
        }

        ConfigPreloadData preloadDataItem = preloadData.get(0);

        if (preloadDataItem.getPreloadData() == null) {
            throw new RestProtocolException("data-missing", "No preload-data found", HttpStatus.NOT_FOUND.value());
        }
        try {
            return new ResponseEntity<>(objectMapper.readValue(preloadDataItem.getPreloadData(), GenericResourceApiPreloaddataPreloadData.class), HttpStatus.OK);
        } catch (JsonProcessingException e) {
            log.error("Cannot convert preload data", e);
            throw new RestApplicationException("data-conversion", "Request could not be completed due to internal error", e, HttpStatus.INTERNAL_SERVER_ERROR.value());
        }
    }

    @Override
    public ResponseEntity<Void> configGENERICRESOURCEAPIpreloadInformationPreloadListPreloadIdPreloadTypePreloadDataPost(String preloadId, String preloadType, @Valid GenericResourceApiPreloaddataPreloadData preloadData) throws RestApplicationException, RestProtocolException {
        List<ConfigPreloadData> preloadDataEntries = configPreloadDataRepository.findByPreloadIdAndPreloadType(preloadId, preloadType);

        List<ConfigPreloadData> preloadDataItems = configPreloadDataRepository.findByPreloadIdAndPreloadType(preloadId, preloadType);
        if ((preloadDataItems == null) || (preloadDataItems.isEmpty())) {
            throw new RestProtocolException("data-missing", "No preload entry found", HttpStatus.NOT_FOUND.value());
        }

        if ((preloadData == null) ||
                (preloadData.getPreloadNetworkTopologyInformation() == null)) {
            throw new RestProtocolException("bad-attribute", "Invalid preloadData received", HttpStatus.BAD_REQUEST.value());
        }

        ConfigPreloadData preloadDataItem = preloadDataItems.get(0);

        if (preloadDataItem.getPreloadData() != null) {
            log.error("Preload data already exists for {}:{} ", preloadId, preloadType);
            throw new RestProtocolException("data-exists", "Data already exists for " + preloadId + ":" + preloadType, HttpStatus.CONFLICT.value());
        }

        try {
            preloadDataItem.setPreloadData(objectMapper.writeValueAsString(preloadData));
            configPreloadDataRepository.save(preloadDataItem);
        } catch (JsonProcessingException e) {
            log.error("Cannot convert preload data", e);
            throw new RestApplicationException("data-conversion", "Request could not be completed due to internal error", e, HttpStatus.INTERNAL_SERVER_ERROR.value());
        }

        return new ResponseEntity<>(HttpStatus.CREATED);
    }

    @Override
    public ResponseEntity<Void> configGENERICRESOURCEAPIpreloadInformationPreloadListPreloadIdPreloadTypePreloadDataPut(String preloadId, String preloadType, @Valid GenericResourceApiPreloaddataPreloadData preloadData) throws RestApplicationException, RestProtocolException {
        boolean dataExists = false;
        List<ConfigPreloadData> preloadDataItems = configPreloadDataRepository.findByPreloadIdAndPreloadType(preloadId, preloadType);
        if ((preloadDataItems == null) || (preloadDataItems.isEmpty())) {
            throw new RestProtocolException("data-missing", "No preload entry found", HttpStatus.NOT_FOUND.value());
        }

        if ((preloadData == null) ||
                (preloadData.getPreloadNetworkTopologyInformation() == null)) {
            throw new RestProtocolException("bad-attribute", "Invalid preloadData received", HttpStatus.BAD_REQUEST.value());
        }

        ConfigPreloadData preloadDataItem = preloadDataItems.get(0);

        if (preloadDataItem.getPreloadData() != null) {
            dataExists = true;
        }

        try {
            preloadDataItem.setPreloadData(objectMapper.writeValueAsString(preloadData));
            configPreloadDataRepository.save(preloadDataItem);
        } catch (JsonProcessingException e) {
            log.error("Cannot convert preload data", e);
            throw new RestApplicationException("data-conversion", "Request could not be completed due to internal error", e, HttpStatus.INTERNAL_SERVER_ERROR.value());
        }

        if (dataExists) {
            return new ResponseEntity<>(HttpStatus.NO_CONTENT);
        } else {
            return new ResponseEntity<>(HttpStatus.CREATED);
        }
    }

    @Override
    public ResponseEntity<Void> configGENERICRESOURCEAPIservicesDelete() {
        configServicesRepository.deleteAll();
        return new ResponseEntity<>(HttpStatus.NO_CONTENT);
    }

    @Override
    public ResponseEntity<GenericResourceApiServiceModelInfrastructure> configGENERICRESOURCEAPIservicesGet() throws RestApplicationException {
        GenericResourceApiServiceModelInfrastructure modelInfrastructure = new GenericResourceApiServiceModelInfrastructure();

        if (configServicesRepository.count() == 0)  {
            throw new RestApplicationException("data-missing", "Request could not be completed because the relevant data model content does not exist", HttpStatus.NOT_FOUND.value());
        }

        for (ConfigServices service : configServicesRepository.findAll()) {
            GenericResourceApiServicemodelinfrastructureService serviceItem = new GenericResourceApiServicemodelinfrastructureService();
            serviceItem.setServiceInstanceId(service.getSvcInstanceId());
            if (service.getSvcData() != null) {
            try {
                serviceItem.setServiceData(objectMapper.readValue(service.getSvcData(), GenericResourceApiServicedataServiceData.class));
            } catch (JsonProcessingException e) {
                log.error("Could not deserialize service data for {}", service.getSvcInstanceId(), e);
                throw new RestApplicationException("data-conversion", "Request could not be completed due to internal error", e, HttpStatus.INTERNAL_SERVER_ERROR.value());

            }
        }
            serviceItem.setServiceStatus(service.getServiceStatus());
            modelInfrastructure.addServiceItem(serviceItem);
        }


        return new ResponseEntity<>(modelInfrastructure, HttpStatus.OK);

    }

    @Override
    public ResponseEntity<Void> configGENERICRESOURCEAPIservicesPost(@Valid GenericResourceApiServiceModelInfrastructure modelInfrastructure) throws RestApplicationException, RestProtocolException {
        List<ConfigServices> newServices = new LinkedList<>();

        for (GenericResourceApiServicemodelinfrastructureService serviceItem : modelInfrastructure.getService()) {
            String svcInstanceId = serviceItem.getServiceInstanceId();
            List<ConfigServices> existingService = configServicesRepository.findBySvcInstanceId(svcInstanceId);
            if ((existingService != null) && !existingService.isEmpty()) {
                log.error("Service data already exists for {}", svcInstanceId);
                throw new RestProtocolException("data-exists", "Data already exists for service-instance-id " + svcInstanceId, HttpStatus.CONFLICT.value());
            }
            ConfigServices service = new ConfigServices();
            service.setSvcInstanceId(svcInstanceId);
            try {
                service.setSvcData(objectMapper.writeValueAsString(serviceItem.getServiceData()));
            } catch (JsonProcessingException e) {
                log.error("Could not serialize service data for {}", service.getSvcInstanceId(), e);
                throw new RestApplicationException("data-conversion", "Request could not be completed due to internal error", e, HttpStatus.INTERNAL_SERVER_ERROR.value());

            }
            service.setServiceStatus(serviceItem.getServiceStatus());
            newServices.add(service);
        }

        for (ConfigServices service : newServices) {
            configServicesRepository.save(service);
        }

        return new ResponseEntity<>(HttpStatus.CREATED);

    }

    @Override
    public ResponseEntity<Void> configGENERICRESOURCEAPIservicesPut(@Valid GenericResourceApiServiceModelInfrastructure modelInfrastructure) throws RestApplicationException {

        List<ConfigServices> newServices = new LinkedList<>();
        boolean dataExists = false;

        for (GenericResourceApiServicemodelinfrastructureService serviceItem : modelInfrastructure.getService()) {
            String svcInstanceId = serviceItem.getServiceInstanceId();
            List<ConfigServices> existingService = configServicesRepository.findBySvcInstanceId(svcInstanceId);
            if ((existingService != null) && !existingService.isEmpty()) {
                dataExists = true;
            }
            ConfigServices service = new ConfigServices();
            service.setSvcInstanceId(svcInstanceId);
            try {
                service.setSvcData(objectMapper.writeValueAsString(serviceItem.getServiceData()));
            } catch (JsonProcessingException e) {
                log.error("Could not serialize service data for {}", service.getSvcInstanceId(), e);
                throw new RestApplicationException("data-conversion", "Request could not be completed due to internal error", e, HttpStatus.INTERNAL_SERVER_ERROR.value());

            }
            service.setServiceStatus(serviceItem.getServiceStatus());
            newServices.add(service);
        }

        for (ConfigServices service : newServices) {
            configServicesRepository.save(service);
        }

        if (dataExists) {
            return new ResponseEntity<>(HttpStatus.NO_CONTENT);
        } else {
            return new ResponseEntity<>(HttpStatus.CREATED);
        }

    }

    @Override
    public ResponseEntity<Void> configGENERICRESOURCEAPIservicesServicePost(@Valid GenericResourceApiServicemodelinfrastructureService servicesData) throws RestApplicationException {
        String svcInstanceId = servicesData.getServiceInstanceId();
        try {
            String svcData = objectMapper.writeValueAsString(servicesData.getServiceData());
            ConfigServices configService = new ConfigServices(svcInstanceId, svcData, servicesData.getServiceStatus());
            configServicesRepository.deleteBySvcInstanceId(svcInstanceId);
            configServicesRepository.save(configService);
        } catch (JsonProcessingException e) {
            log.error("Cannot convert service data", e);
            throw new RestApplicationException("data-conversion", "Request could not be completed due to internal error", e, HttpStatus.INTERNAL_SERVER_ERROR.value());

        }
        return new ResponseEntity<>(HttpStatus.OK);
    }

    @Override
    public ResponseEntity<Void> configGENERICRESOURCEAPIservicesServiceServiceInstanceIdDelete(String serviceInstanceId) {
        configServicesRepository.deleteBySvcInstanceId(serviceInstanceId);
        return new ResponseEntity<>(HttpStatus.NO_CONTENT);
    }

    @Override
    public ResponseEntity<GenericResourceApiServicemodelinfrastructureService> configGENERICRESOURCEAPIservicesServiceServiceInstanceIdGet(String serviceInstanceId) throws RestApplicationException {
        GenericResourceApiServicemodelinfrastructureService retval = null;

        List<ConfigServices> services = configServicesRepository.findBySvcInstanceId(serviceInstanceId);

        if (services.isEmpty()) {
            return new ResponseEntity<>(HttpStatus.NOT_FOUND);
        } else {
            ConfigServices service = services.get(0);
            retval = new GenericResourceApiServicemodelinfrastructureService();
            retval.setServiceInstanceId(serviceInstanceId);
            retval.setServiceStatus(service.getServiceStatus());
            try {
                retval.setServiceData(objectMapper.readValue(service.getSvcData(), GenericResourceApiServicedataServiceData.class));
            } catch (JsonProcessingException e) {
                log.error("Could not deserialize service data for service instance id {}", serviceInstanceId, e);
                throw new RestApplicationException("data-conversion", "Request could not be completed due to internal error", e, HttpStatus.INTERNAL_SERVER_ERROR.value());

            }
        }


        return new ResponseEntity<>(retval, HttpStatus.OK);

    }

    @Override
    public ResponseEntity<Void> configGENERICRESOURCEAPIservicesServiceServiceInstanceIdPost(String svcInstanceId, @Valid GenericResourceApiServicemodelinfrastructureService newService) throws RestApplicationException, RestProtocolException {

        List<ConfigServices> existingService = configServicesRepository.findBySvcInstanceId(svcInstanceId);
        if ((existingService != null) && !existingService.isEmpty()) {
            log.error("Service data already exists for {}", svcInstanceId);
            throw new RestProtocolException("data-exists", "Data already exists for service-instance-id " + svcInstanceId, HttpStatus.CONFLICT.value());
        }
        ConfigServices service = new ConfigServices();
        service.setSvcInstanceId(svcInstanceId);
        try {
            service.setSvcData(objectMapper.writeValueAsString(newService.getServiceData()));
        } catch (JsonProcessingException e) {
            log.error("Could not serialize service data for {}", service.getSvcInstanceId(), e);
            throw new RestApplicationException("data-conversion", "Request could not be completed due to internal error", e, HttpStatus.INTERNAL_SERVER_ERROR.value());

        }
        service.setServiceStatus(newService.getServiceStatus());
        configServicesRepository.save(service);

        return new ResponseEntity<>(HttpStatus.CREATED);
    }

    @Override
    public ResponseEntity<Void> configGENERICRESOURCEAPIservicesServiceServiceInstanceIdPut(String serviceInstanceId, @Valid GenericResourceApiServicemodelinfrastructureService newService) throws RestApplicationException {

        boolean dataExists = false;

        String svcInstanceId = newService.getServiceInstanceId();

        ConfigServices service = null;
        List<ConfigServices> existingService = configServicesRepository.findBySvcInstanceId(svcInstanceId);
        if ((existingService != null) && !existingService.isEmpty()) {
            dataExists = true;
            service = existingService.get(0);
        } else {
            service = new ConfigServices();
            service.setSvcInstanceId(svcInstanceId);
        }

        try {
            service.setSvcData(objectMapper.writeValueAsString(newService.getServiceData()));
        } catch (JsonProcessingException e) {
            log.error("Could not serialize service data for {}", service.getSvcInstanceId(), e);
            throw new RestApplicationException("data-conversion", "Request could not be completed due to internal error", e, HttpStatus.INTERNAL_SERVER_ERROR.value());

        }
        service.setServiceStatus(newService.getServiceStatus());
        configServicesRepository.save(service);

        if (dataExists) {
            return new ResponseEntity<>(HttpStatus.NO_CONTENT);
        } else {
            return new ResponseEntity<>(HttpStatus.CREATED);
        }
    }


    @Override
    public ResponseEntity<Void> configGENERICRESOURCEAPIservicesServiceServiceInstanceIdServiceDataDelete(String serviceInstanceId) throws RestProtocolException {
        List<ConfigServices> services = configServicesRepository.findBySvcInstanceId(serviceInstanceId);

        if ((services == null) || (services.isEmpty())) {
            throw new RestProtocolException("data-missing", "No service entry found", HttpStatus.NOT_FOUND.value());
        }

        ConfigServices service = services.get(0);
        if (service.getSvcData() == null) {
            throw new RestProtocolException("data-missing", "No service-data found", HttpStatus.NOT_FOUND.value());
        }
        service.setSvcData(null);
        configServicesRepository.save(service);

        return new ResponseEntity<>(HttpStatus.NO_CONTENT);
    }

    @Override
    public ResponseEntity<GenericResourceApiServicedataServiceData> configGENERICRESOURCEAPIservicesServiceServiceInstanceIdServiceDataGet(String serviceInstanceId) throws RestApplicationException, RestProtocolException {
        GenericResourceApiServicedataServiceData serviceData = null;

        List<ConfigServices> services = configServicesRepository.findBySvcInstanceId(serviceInstanceId);
        if ((services == null) || (services.isEmpty())) {
            throw new RestProtocolException("data-missing", "No service entry found", HttpStatus.NOT_FOUND.value());
        }

        try {
            serviceData = objectMapper.readValue(services.get(0).getSvcData(), GenericResourceApiServicedataServiceData.class);
            return new ResponseEntity<>(serviceData, HttpStatus.OK);
        } catch (JsonProcessingException e) {
            log.error("Could not parse service data", e);
            throw new RestApplicationException("data-conversion", "Request could not be completed due to internal error", e, HttpStatus.INTERNAL_SERVER_ERROR.value());
        }

    }

    @Override
    public ResponseEntity<Void> configGENERICRESOURCEAPIservicesServiceServiceInstanceIdServiceDataPost(String serviceInstanceId, @Valid GenericResourceApiServicedataServiceData serviceData) throws RestApplicationException, RestProtocolException {
        ConfigServices service;
        List<ConfigServices> services = configServicesRepository.findBySvcInstanceId(serviceInstanceId);
        if ((services == null) || (services.isEmpty())) {
            throw new RestProtocolException("data-missing", "No service entry found", HttpStatus.NOT_FOUND.value());
        }

        if ((serviceData == null) ||
                (serviceData.getServiceInformation() == null)) {
            throw new RestProtocolException("bad-attribute", "Invalid service-data received", HttpStatus.BAD_REQUEST.value());

        }
        service = services.get(0);

        if ((service.getSvcData() != null) && (service.getSvcData().length() > 0)){
            log.error("service-data already exists for svcInstanceId {}", serviceInstanceId);
            throw new RestProtocolException("data-exists", "Data already exists for " + serviceInstanceId, HttpStatus.CONFLICT.value());
        }


        try {
            service.setSvcData(objectMapper.writeValueAsString(serviceData));
            configServicesRepository.save(service);
        } catch (JsonProcessingException e) {
            log.error("Could not serialize service data for svc instance id {}", serviceInstanceId, e);
            throw new RestApplicationException("data-conversion", "Request could not be completed due to internal error", e, HttpStatus.INTERNAL_SERVER_ERROR.value());
        }


        return new ResponseEntity<>(HttpStatus.CREATED);

    }

    @Override
    public ResponseEntity<Void> configGENERICRESOURCEAPIservicesServiceServiceInstanceIdServiceDataPut(String serviceInstanceId, @Valid GenericResourceApiServicedataServiceData serviceData) throws RestApplicationException, RestProtocolException {
        ConfigServices service;
        boolean dataExists = false;

        List<ConfigServices> services = configServicesRepository.findBySvcInstanceId(serviceInstanceId);
        if ((services == null) || (services.isEmpty())) {
            throw new RestProtocolException("data-missing", "No service entry found", HttpStatus.NOT_FOUND.value());
        }

        if ((serviceData == null) ||
                (serviceData.getServiceInformation() == null)) {
            throw new RestProtocolException("bad-attribute", "Invalid service-data received", HttpStatus.BAD_REQUEST.value());

        }
        service = services.get(0);

        if ((service.getSvcData() != null) && (service.getSvcData().length() > 0)) {
            dataExists = true;
        }

        try {
            service.setSvcData(objectMapper.writeValueAsString(serviceData));
            configServicesRepository.save(service);
        } catch (JsonProcessingException e) {
            log.error("Could not serialize service data for svc instance id {}", serviceInstanceId, e);
            throw new RestApplicationException("data-conversion", "Request could not be completed due to internal error", e, HttpStatus.INTERNAL_SERVER_ERROR.value());
        }

        if (dataExists) {
            return new ResponseEntity<>(HttpStatus.NO_CONTENT);
        } else {
            return new ResponseEntity<>(HttpStatus.CREATED);
        }
    }

    @Override
    public ResponseEntity<Void> configGENERICRESOURCEAPIservicesServiceServiceInstanceIdServiceStatusDelete(String serviceInstanceId) throws RestProtocolException {
        List<ConfigServices> services = configServicesRepository.findBySvcInstanceId(serviceInstanceId);

        if ((services == null) || (services.isEmpty())) {
            throw new RestProtocolException("data-missing", "No service entry found", HttpStatus.NOT_FOUND.value());
        }

        ConfigServices service = services.get(0);
        if (service.getServiceStatus() == null) {
            throw new RestProtocolException("data-missing", "No service-status found", HttpStatus.NOT_FOUND.value());
        }
        service.setServiceStatus(null);
        configServicesRepository.save(service);

        return new ResponseEntity<>(HttpStatus.NO_CONTENT);

    }

    @Override
    public ResponseEntity<GenericResourceApiServicestatusServiceStatus> configGENERICRESOURCEAPIservicesServiceServiceInstanceIdServiceStatusGet(String serviceInstanceId) throws RestApplicationException, RestProtocolException {
        GenericResourceApiServicestatusServiceStatus serviceStatus = null;

        List<ConfigServices> services = configServicesRepository.findBySvcInstanceId(serviceInstanceId);
        if ((services == null) || (services.isEmpty())) {
            throw new RestProtocolException("data-missing", "No service entry found", HttpStatus.NOT_FOUND.value());
        }

        serviceStatus = services.get(0).getServiceStatus();
        return new ResponseEntity<>(serviceStatus, HttpStatus.OK);
    }

    @Override
    public ResponseEntity<Void> configGENERICRESOURCEAPIservicesServiceServiceInstanceIdServiceStatusPost(String serviceInstanceId, @Valid GenericResourceApiServicestatusServiceStatus serviceStatus) throws RestProtocolException {
        ConfigServices service;
        List<ConfigServices> services = configServicesRepository.findBySvcInstanceId(serviceInstanceId);
        if ((services == null) || (services.isEmpty())) {
            throw new RestProtocolException("data-missing", "No service entry found", HttpStatus.NOT_FOUND.value());
        }

        if ((serviceStatus == null) ||
                (serviceStatus.getAction() == null)) {
            throw new RestProtocolException("bad-attribute", "Invalid service-status received", HttpStatus.BAD_REQUEST.value());

        }
        service = services.get(0);

        if (service.getServiceStatus() != null) {
            log.error("service-status already exists for svcInstanceId {}", serviceInstanceId);
            throw new RestProtocolException("data-exists", "Data already exists for " + serviceInstanceId, HttpStatus.CONFLICT.value());
        }


        service.setServiceStatus(serviceStatus);
        configServicesRepository.save(service);


        return new ResponseEntity<>(HttpStatus.CREATED);

    }

    @Override
    public ResponseEntity<Void> configGENERICRESOURCEAPIservicesServiceServiceInstanceIdServiceStatusPut(String serviceInstanceId, @Valid GenericResourceApiServicestatusServiceStatus serviceStatus) throws RestProtocolException {
        ConfigServices service;
        boolean dataExists = false;

        List<ConfigServices> services = configServicesRepository.findBySvcInstanceId(serviceInstanceId);
        if ((services == null) || (services.isEmpty())) {
            throw new RestProtocolException("data-missing", "No service entry found", HttpStatus.NOT_FOUND.value());
        }

        if ((serviceStatus == null) ||
                (serviceStatus.getAction() == null)) {
            throw new RestProtocolException("bad-attribute", "Invalid service-status received", HttpStatus.BAD_REQUEST.value());

        }
        service = services.get(0);

        if (service.getServiceStatus() != null) {
            dataExists = true;
        }


        service.setServiceStatus(serviceStatus);
        configServicesRepository.save(service);

        if (dataExists) {
            return new ResponseEntity<>(HttpStatus.NO_CONTENT);
        } else {
            return new ResponseEntity<>(HttpStatus.CREATED);
        }
    }

    /**
     * Deletes VNF data from the Config table specified Service Instance.
     * <p>
     * Maps to /config/GENERIC-RESOURCE-API:services/service/{service-instance-id}/service-data/vnfs/vnf/{vnf-id}/
     * @param serviceInstanceId the Service Instance ID to perform the delete on
     * @param vnfId the VNF ID of the VNF to delete
     * @return HttpStatus.NO_CONTENT (204) on successful delete
     *         <p>
     *         HttpStatus.BAD_REQUEST (400) if unmarshalling Service Data from
     *         the database fails, there is no VNF data for {@code vnfId}, or
     *         writing Service Data back to the database fails.
     *         <p>
     *         HttpStatus.NOT_FOUND (404) if {@code serviceInstanceId} does
     *         not exist.
     */
    @Override
    public ResponseEntity<Void> configGENERICRESOURCEAPIservicesServiceServiceInstanceIdServiceDataVnfsVnfVnfIdDelete(String serviceInstanceId, String vnfId) throws RestException {
        log.info("DELETE | VNF Data for ({})", vnfId);

        /* The logic may need to be moved inside of this check or this check
         * may need to be removed.
         */
        if(getObjectMapper().isPresent() && getAcceptHeader().isPresent()) {
            log.info("Something with header.");
        } else {
            log.warn("ObjectMapper or HttpServletRequest not configured in default ConfigApi interface so no example is generated");
        }

        List<ConfigServices> services = configServicesRepository.findBySvcInstanceId(serviceInstanceId);
        ConfigServices data;
        if((services == null) || (services.isEmpty())) {
            log.info("Could not find data for ({}).", serviceInstanceId);
            // Or throw the data not found error?
            throw new RestProtocolException("data-missing", "Service Instance ID not found.", HttpStatus.NOT_FOUND.value());
        } else {
            data = services.get(0);
        }

        GenericResourceApiServicedataServiceData svcData;
        try {
            svcData = objectMapper.readValue(data.getSvcData(), GenericResourceApiServicedataServiceData.class);
        } catch(JsonProcessingException e) {
            // Or throw the data not found error?
            log.error("Could not map service data for ({})", serviceInstanceId);
            return new ResponseEntity<>(HttpStatus.BAD_REQUEST);
        }
        if(svcData == null) {
            // Or throw the data not found error?
            log.info("Could not find Service Data for ({}).", serviceInstanceId);
            throw new RestProtocolException("data-missing", "Service data not found.", HttpStatus.NOT_FOUND.value());
        }

        GenericResourceApiServicedataServicedataVnfs vnfs = svcData.getVnfs();
        if(vnfs == null) {
            // Or throw the data not found error?
            log.info("VNF List not found for ({}).", serviceInstanceId);
            throw new RestProtocolException("data-missing", "VNFs not found.", HttpStatus.NOT_FOUND.value());
        }

        Stream<GenericResourceApiServicedataServicedataVnfsVnf> vnfStream = svcData.getVnfs().getVnf().stream();
        if(vnfStream.noneMatch(targetVnf -> targetVnf.getVnfId().equals(vnfId))) {
            // Data was not found
            log.error("Did not find VNF ({}) in data.", vnfId);
            throw new RestProtocolException("data-missing", "VNF ID not found.", HttpStatus.NOT_FOUND.value());
        }
        // Recreate the stream per Sonar?
        vnfStream = svcData.getVnfs().getVnf().stream();
        svcData.getVnfs().setVnf(vnfStream.filter(targetVnf -> !targetVnf.getVnfId().equals(vnfId)).collect(Collectors.toList()));

        // Map and save the new data
        try {
            data.setSvcData(objectMapper.writeValueAsString(svcData));
            configServicesRepository.save(data);
            return new ResponseEntity<>(HttpStatus.NO_CONTENT);
        } catch(JsonProcessingException e) {
            log.error("Error mapping object to JSON", e);
            // Should probably be a 500 INTERNAL_SERVICE_ERROR
            throw new RestProtocolException("internal-service-error", "Failed to save data.", HttpStatus.BAD_REQUEST.value());
        }
    }

    /**
     * Extracts VNF data from the Config table specified Service Instance.
     * <p>
     * Maps to /config/GENERIC-RESOURCE-API:services/service/{service-instance-id}/service-data/vnfs/vnf/{vnf-id}/
     * @param serviceInstanceId the Service Instance ID to lookup data for
     * @param vnfId the VNF ID of the VNF to return
     * @return HttpStatus.OK (200) if the data is found.
     * @throws RestException if the data does not exist.
     */
    @Override
    public ResponseEntity<GenericResourceApiServicedataServicedataVnfsVnf> configGENERICRESOURCEAPIservicesServiceServiceInstanceIdServiceDataVnfsVnfVnfIdGet(String serviceInstanceId, String vnfId) throws RestException {
        log.info("GET | VNF Data for ({})", vnfId);
        if(getObjectMapper().isPresent() && getAcceptHeader().isPresent()) {
            if(getAcceptHeader().get().contains("application/json")) {
            }
        } else {
            log.warn("ObjectMapper or HttpServletRequest not configured in default ConfigApi interface so no example is generated");
        }
        List<ConfigServices> services = configServicesRepository.findBySvcInstanceId(serviceInstanceId);
        if((services == null) || (services.isEmpty())) {
            throw new RestProtocolException("data-missing", "No service entry found", HttpStatus.NOT_FOUND.value());
        }

        Optional<GenericResourceApiServicedataServicedataVnfsVnf> vnf = getVnfObject(services.get(0), vnfId);
        if(vnf.isPresent()) {
            return new ResponseEntity<>(vnf.get(), HttpStatus.OK);
        } else {
            log.info("No information found for {}", vnfId);
            throw new RestApplicationException("data-missing", "Request could not be completed because the relevant data model content does not exist", HttpStatus.NOT_FOUND.value());
        }
    }

    /**
     * Creates or updates VNF data in the Config table for a specified Service
     * Instance. If it is a new Service Instance or a new VNF, creates all
     * necessary parent data containers, then performs the updates.
     * <p>
     * Maps to /config/GENERIC-RESOURCE-API:services/service/{service-instance-id}/service-data/vnfs/vnf/{vnf-id}/
     * @param serviceInstanceId the Service Instance ID to perform the delete on
     * @param vnfId the VNF ID of the VNF to delete
     * @param genericResourceApiServicedataServicedataVnfsVnfBodyParam the playload
     * @return HttpStatus.CREATED (201) on successful create
     *         <p>
     *         HttpStatus.NO_CONTENT (204) on successful update
     *         <p>
     *         HttpStatus.BAD_REQUEST (400) if {@code vnfId} does not match
     *         what is specified in the
     *         {@code genericResourceApiServicedataServicedataVnfsVnfBodyParam}
     *         , or if updating the database fails.
     * @throws RestException
     */
    @Override
    public ResponseEntity<Void> configGENERICRESOURCEAPIservicesServiceServiceInstanceIdServiceDataVnfsVnfVnfIdPut(String serviceInstanceId, String vnfId, GenericResourceApiServicedataServicedataVnfsVnf genericResourceApiServicedataServicedataVnfsVnfBodyParam) throws RestException {
        log.info("PUT | VNF Data for ({})", vnfId);
        if(!vnfId.equals(genericResourceApiServicedataServicedataVnfsVnfBodyParam.getVnfId())) {
            throw new RestProtocolException("bad-attribute", "vnf-id mismatch", HttpStatus.BAD_REQUEST.value());
        }
        if(getObjectMapper().isPresent() && getAcceptHeader().isPresent()) {
            log.info("Something with header");
        } else {
            log.warn("ObjectMapper or HttpServletRequest not configured in default ConfigApi interface so no example is generated");
        }

        List<ConfigServices> services = configServicesRepository.findBySvcInstanceId(serviceInstanceId);
        ConfigServices data;
        if((services == null) || (services.isEmpty())) {
            log.info("Could not find data for ({}). Creating new Service Object.", serviceInstanceId);
            data = new ConfigServices();
            data.setSvcInstanceId(serviceInstanceId);
        } else {
            data = services.get(0);
        }

        GenericResourceApiServicedataServiceData svcData = null;
        try {
            svcData = objectMapper.readValue(data.getSvcData(), GenericResourceApiServicedataServiceData.class);
        } catch(JsonProcessingException e) {
            log.error("Could not map service data for ({})", serviceInstanceId);
        }
        if(svcData == null) {
            log.info("Could not find Service Data for ({}). Creating new Service Data Container", serviceInstanceId);
            svcData = new GenericResourceApiServicedataServiceData();
        }
        if(svcData.getVnfs() == null) {
            log.info("VNF List not found for ({}). Creating new VNF List Container.", serviceInstanceId);
            svcData.setVnfs(new GenericResourceApiServicedataServicedataVnfs());
            svcData.getVnfs().setVnf(new ArrayList<>());
        }

        GenericResourceApiServicedataServicedataVnfs vnflist = new GenericResourceApiServicedataServicedataVnfs();
        HttpStatus responseStatus = HttpStatus.NO_CONTENT;
        if(svcData.getVnfs().getVnf().isEmpty()) {
            log.info("Creating VNF data for ({})", vnfId);
            vnflist.addVnfItem(genericResourceApiServicedataServicedataVnfsVnfBodyParam);
            responseStatus = HttpStatus.CREATED;
        } else {
            log.info("Updating VNF data for ({})", vnfId);
            // Filter out all of the other vnf objects into a new VNF List
            // Replace if a delete method exists
            svcData.getVnfs()
                    .getVnf()
                    .stream()
                    .filter(targetVnf -> !targetVnf.getVnfId().equals(vnfId))
                    .forEach(vnflist::addVnfItem);
            vnflist.addVnfItem(genericResourceApiServicedataServicedataVnfsVnfBodyParam);
        }
        svcData.setVnfs(vnflist);
        // Map and save the new data
        try {
            data.setSvcData(objectMapper.writeValueAsString(svcData));
            configServicesRepository.save(data);
            return new ResponseEntity<>(responseStatus);
        } catch(JsonProcessingException e) {
            log.error("Error mapping object to JSON", e);
            // Should probably be a 500 INTERNAL_SERVICE_ERROR
            return new ResponseEntity<>(HttpStatus.BAD_REQUEST);
        }
    }

    /**
     * Extracts VNF Topology data from the Config table specified Service
     * Instance and VNF ID.
     * <p>
     * Maps to /config/GENERIC-RESOURCE-API:services/service/{service-instance-id}/service-data/vnfs/vnf/{vnf-id}/vnf-data/vnf-topology/
     * @param serviceInstanceId the Service Instance ID to lookup data for
     * @param vnfId the VNF ID of the VNF to extract topology data from.
     * @return HttpStatus.OK (200) if the data is found.
     * @throws RestException if the data does not exist.
     */
    @Override
    public ResponseEntity<GenericResourceApiVnftopologyVnfTopology> configGENERICRESOURCEAPIservicesServiceServiceInstanceIdServiceDataVnfsVnfVnfIdVnfDataVnfTopologyGet(String serviceInstanceId, String vnfId) throws RestException {
        log.info("GET | VNF Topology for ({})", vnfId);
        if(getObjectMapper().isPresent() && getAcceptHeader().isPresent()) {
            if (getAcceptHeader().get().contains("application/json")) {

            }
        } else {
            log.warn("ObjectMapper or HttpServletRequest not configured in default ConfigApi interface so no example is generated");
        }
        List<ConfigServices> services = configServicesRepository.findBySvcInstanceId(serviceInstanceId);
        if((services == null) || (services.isEmpty())) {
            throw new RestProtocolException("data-missing", "No service entry found", HttpStatus.NOT_FOUND.value());
        }

        Optional<GenericResourceApiServicedataServicedataVnfsVnf> vnf = getVnfObject(services.get(0), vnfId);
        // Drill down to find the data
        if(vnf.isPresent()
                   && vnf.get().getVnfData() != null
                   && vnf.get().getVnfData().getVnfTopology() != null) {
            return new ResponseEntity<>(vnf.get().getVnfData().getVnfTopology(), HttpStatus.OK);
        } else {
            log.info("No information found for {}", vnfId);
            throw new RestApplicationException("data-missing", "Request could not be completed because the relevant data model content does not exist", HttpStatus.NOT_FOUND.value());
        }
    }

    /**
     * Creates or updates VNF Level Operation Status data in the Config table
     * for a specified Service Instance. If it is a new Service Instance or a
     * new VNF, creates all necessary parent data containers, then performs the
     * updates.
     * <p>
     * Maps to /config/GENERIC-RESOURCE-API:services/service/{service-instance-id}/service-data/vnfs/vnf/{vnf-id}/vnf-data/vnf-level-oper-status/
     * @param serviceInstanceId the Service Instance ID to perform the delete on
     * @param vnfId the VNF ID of the VNF to delete
     * @param genericResourceApiOperStatusDataBodyParam the payload
     * @return HttpStatus.CREATED (201) on successful create.
     *         <p>
     *         HttpStatus.NO_CONTENT (204) on successful update.
     *         <p>
     *         HttpStatus.BAD_REQUEST (400) if updating the database fails.
     * @throws RestException
     */
    @Override
    public ResponseEntity<Void> configGENERICRESOURCEAPIservicesServiceServiceInstanceIdServiceDataVnfsVnfVnfIdVnfDataVnfLevelOperStatusPut(String serviceInstanceId, String vnfId, GenericResourceApiOperStatusData genericResourceApiOperStatusDataBodyParam) throws RestException {
        log.info("PUT | VNF Level Oper Status ({})", vnfId);
        if(getObjectMapper().isPresent() && getAcceptHeader().isPresent()) {
        } else {
            log.warn("ObjectMapper or HttpServletRequest not configured in default ConfigApi interface so no example is generated");
        }

        List<ConfigServices> services = configServicesRepository.findBySvcInstanceId(serviceInstanceId);
        ConfigServices data;
        if((services == null) || (services.isEmpty())) {
            log.info("Could not find data for ({}). Creating new Service Object.", serviceInstanceId);
            data = new ConfigServices();
            data.setSvcInstanceId(serviceInstanceId);
        } else {
            data = services.get(0);
        }

        GenericResourceApiServicedataServiceData svcData = null;
        try {
            svcData = objectMapper.readValue(data.getSvcData(), GenericResourceApiServicedataServiceData.class);
        } catch(JsonProcessingException e) {
            log.error("Could not map service data for ({})", serviceInstanceId);
        }
        if(svcData == null) {
            log.info("Could not find Service Data for ({}). Creating new Service Data Container", serviceInstanceId);
            svcData = new GenericResourceApiServicedataServiceData();
        }
        if(svcData.getVnfs() == null) {
            log.info("VNF List not found for ({}). Creating new VNF List Container.", serviceInstanceId);
            svcData.setVnfs(new GenericResourceApiServicedataServicedataVnfs());
            svcData.getVnfs().setVnf(new ArrayList<>());
        }

        GenericResourceApiServicedataServicedataVnfs vnflist = new GenericResourceApiServicedataServicedataVnfs();
        HttpStatus responseStatus = HttpStatus.NO_CONTENT;
        if(svcData.getVnfs().getVnf().isEmpty()) {
            log.info("Creating VNF data for ({})", vnfId);
            GenericResourceApiServicedataServicedataVnfsVnf vnf = new GenericResourceApiServicedataServicedataVnfsVnf();
            vnf.setVnfId(vnfId);
            vnf.setVnfData(new GenericResourceApiServicedataServicedataVnfsVnfVnfData());
            vnf.getVnfData().setVnfLevelOperStatus(genericResourceApiOperStatusDataBodyParam);
            vnflist.addVnfItem(vnf);
            responseStatus = HttpStatus.CREATED;
        } else {
            log.info("Updating VNF data for ({})", vnfId);
            // Filter out all of the other vnf objects into a new VNF List
            // Replace if a delete method exists
            svcData.getVnfs()
                    .getVnf()
                    .stream()
                    .filter(targetVnf -> !targetVnf.getVnfId().equals(vnfId))
                    .forEach(vnflist::addVnfItem);
            GenericResourceApiServicedataServicedataVnfsVnf vnf = new GenericResourceApiServicedataServicedataVnfsVnf();
            // If the vnf exists, set it up with new data
            Optional<GenericResourceApiServicedataServicedataVnfsVnf> vnfOptional = getVnfObject(data, vnfId);
            if(vnfOptional.isPresent()) {
                vnf = vnfOptional.get();
            }
            if(vnf.getVnfData() == null) {
                vnf.setVnfData(new GenericResourceApiServicedataServicedataVnfsVnfVnfData());
                responseStatus = HttpStatus.CREATED;
            }

            vnf.getVnfData().setVnfLevelOperStatus(genericResourceApiOperStatusDataBodyParam);
            vnflist.addVnfItem(vnf);
        }

        svcData.setVnfs(vnflist);
        // Map and save the new data
        try {
            data.setSvcData(objectMapper.writeValueAsString(svcData));
            configServicesRepository.save(data);
            return new ResponseEntity<>(responseStatus);
        } catch(JsonProcessingException e) {
            log.error("Error mapping object to JSON", e);
            // Should probably be a 500 INTERNAL_SERVICE_ERROR
            return new ResponseEntity<>(HttpStatus.BAD_REQUEST);
        }
    }

    /**
     * Creates or updates VNF Onap Model Information data in the Config table
     * for a specified Service Instance. If it is a new Service Instance or a
     * new VNF, creates all necessary parent data containers, then performs the
     * updates.
     * <p>
     * Maps to /config/GENERIC-RESOURCE-API:services/service/{service-instance-id}/service-data/vnfs/vnf/{vnf-id}/vnf-data/vnf-topology/onap-model-information/
     * @param serviceInstanceId the Service Instance ID to perform the delete on
     * @param vnfId the VNF ID of the VNF to delete
     * @param genericResourceApiOnapmodelinformationOnapModelInformationBodyParam the payload
     * @return HttpStatus.CREATED (201) on successful create.
     *         <p>
     *         HttpStatus.NO_CONTENT (204) on successful update.
     *         <p>
     *         HttpStatus.BAD_REQUEST (400) if updating the database fails.
     * @throws RestException
     */
    @Override
    public ResponseEntity<Void> configGENERICRESOURCEAPIservicesServiceServiceInstanceIdServiceDataVnfsVnfVnfIdVnfDataVnfTopologyOnapModelInformationPut(String serviceInstanceId, String vnfId, GenericResourceApiOnapmodelinformationOnapModelInformation genericResourceApiOnapmodelinformationOnapModelInformationBodyParam) throws RestException {
        log.info("PUT | VNF Topology Onap Model Information ({})", vnfId);
        if(getObjectMapper().isPresent() && getAcceptHeader().isPresent()) {
        } else {
            log.warn("ObjectMapper or HttpServletRequest not configured in default ConfigApi interface so no example is generated");
        }

        List<ConfigServices> services = configServicesRepository.findBySvcInstanceId(serviceInstanceId);
        ConfigServices data;
        if((services == null) || (services.isEmpty())) {
            log.info("Could not find data for ({}). Creating new Service Object.", serviceInstanceId);
            data = new ConfigServices();
            data.setSvcInstanceId(serviceInstanceId);
        } else {
            data = services.get(0);
        }

        GenericResourceApiServicedataServiceData svcData = null;
        try {
            svcData = objectMapper.readValue(data.getSvcData(), GenericResourceApiServicedataServiceData.class);
        } catch(JsonProcessingException e) {
            log.error("Could not map service data for ({})", serviceInstanceId);
        }
        if(svcData == null) {
            log.info("Could not find Service Data for ({}). Creating new Service Data Container", serviceInstanceId);
            svcData = new GenericResourceApiServicedataServiceData();
        }
        if(svcData.getVnfs() == null) {
            log.info("VNF List not found for ({}). Creating new VNF List Container.", serviceInstanceId);
            svcData.setVnfs(new GenericResourceApiServicedataServicedataVnfs());
            svcData.getVnfs().setVnf(new ArrayList<>());
        }

        GenericResourceApiServicedataServicedataVnfs vnflist = new GenericResourceApiServicedataServicedataVnfs();
        HttpStatus responseStatus = HttpStatus.NO_CONTENT;
        if(svcData.getVnfs().getVnf().isEmpty()) {
            log.info("Creating VNF data for ({})", vnfId);
            GenericResourceApiServicedataServicedataVnfsVnf vnf = new GenericResourceApiServicedataServicedataVnfsVnf();
            vnf.setVnfId(vnfId);
            vnf.setVnfData(new GenericResourceApiServicedataServicedataVnfsVnfVnfData());
            vnf.getVnfData().setVnfTopology(new GenericResourceApiVnftopologyVnfTopology());
            vnf.getVnfData().getVnfTopology().setOnapModelInformation(genericResourceApiOnapmodelinformationOnapModelInformationBodyParam);
            vnflist.addVnfItem(vnf);
            responseStatus = HttpStatus.CREATED;
        } else {
            log.info("Updating VNF data for ({})", vnfId);
            // Filter out all of the other vnf objects into a new VNF List
            // Replace if a delete method exists
            svcData.getVnfs()
                    .getVnf()
                    .stream()
                    .filter(targetVnf -> !targetVnf.getVnfId().equals(vnfId))
                    .forEach(vnflist::addVnfItem);
            GenericResourceApiServicedataServicedataVnfsVnf vnf = new GenericResourceApiServicedataServicedataVnfsVnf();
            // If the vnf exists, set it up with new data
            Optional<GenericResourceApiServicedataServicedataVnfsVnf> vnfOptional = getVnfObject(data, vnfId);
            if(vnfOptional.isPresent()) {
                vnf = vnfOptional.get();
            }
            if(vnf.getVnfData() == null) {
                vnf.setVnfData(new GenericResourceApiServicedataServicedataVnfsVnfVnfData());
            }
            if(vnf.getVnfData().getVnfTopology() == null) {
                vnf.getVnfData().setVnfTopology(new GenericResourceApiVnftopologyVnfTopology());
                responseStatus = HttpStatus.CREATED;
            }

            vnf.getVnfData().getVnfTopology().setOnapModelInformation(genericResourceApiOnapmodelinformationOnapModelInformationBodyParam);
            vnflist.addVnfItem(vnf);
        }

        svcData.setVnfs(vnflist);
        // Map and save the new data
        try {
            data.setSvcData(objectMapper.writeValueAsString(svcData));
            configServicesRepository.save(data);
            return new ResponseEntity<>(responseStatus);
        } catch(JsonProcessingException e) {
            log.error("Error mapping object to JSON", e);
            // Should probably be a 500 INTERNAL_SERVICE_ERROR
            return new ResponseEntity<>(HttpStatus.BAD_REQUEST);
        }
    }

    /**
     * Creates or updates VNF Network data in the Config table for a specified
     * Service Instance. If it is a new Service Instance or a new VNF, creates
     * all necessary parent data containers, then performs the updates.
     * <p>
     * Maps to /config/GENERIC-RESOURCE-API:services/service/{service-instance-id}/service-data/vnfs/vnf/{vnf-id}/vnf-data/vnf-topology/vnf-resource-assignments/vnf-networks/
     * @param serviceInstanceId the Service Instance ID to perform the delete on
     * @param vnfId the VNF ID of the VNF to delete
     * @param genericResourceApiVnfresourceassignmentsVnfresourceassignmentsVnfNetworksBodyParam the payload
     * @return HttpStatus.CREATED (201) on successful create.
     *         <p>
     *         HttpStatus.NO_CONTENT (204) on successful update.
     *         <p>
     *         HttpStatus.BAD_REQUEST (400) if updating the database fails.
     * @throws RestException
     */
    @Override
    public ResponseEntity<Void> configGENERICRESOURCEAPIservicesServiceServiceInstanceIdServiceDataVnfsVnfVnfIdVnfDataVnfTopologyVnfResourceAssignmentsVnfNetworksPut(String serviceInstanceId, String vnfId, GenericResourceApiVnfresourceassignmentsVnfresourceassignmentsVnfNetworks genericResourceApiVnfresourceassignmentsVnfresourceassignmentsVnfNetworksBodyParam) throws RestException {
        log.info("PUT | VNF Topology VNF Resource Assignments VNF Networks ({})", vnfId);
        if(getObjectMapper().isPresent() && getAcceptHeader().isPresent()) {
        } else {
            log.warn("ObjectMapper or HttpServletRequest not configured in default ConfigApi interface so no example is generated");
        }

        List<ConfigServices> services = configServicesRepository.findBySvcInstanceId(serviceInstanceId);
        ConfigServices data;
        if((services == null) || (services.isEmpty())) {
            log.info("Could not find data for ({}). Creating new Service Object.", serviceInstanceId);
            data = new ConfigServices();
            data.setSvcInstanceId(serviceInstanceId);
        } else {
            data = services.get(0);
        }

        GenericResourceApiServicedataServiceData svcData = null;
        try {
            svcData = objectMapper.readValue(data.getSvcData(), GenericResourceApiServicedataServiceData.class);
        } catch(JsonProcessingException e) {
            log.error("Could not map service data for ({})", serviceInstanceId);
        }
        if(svcData == null) {
            log.info("Could not find Service Data for ({}). Creating new Service Data Container", serviceInstanceId);
            svcData = new GenericResourceApiServicedataServiceData();
        }
        if(svcData.getVnfs() == null) {
            log.info("VNF List not found for ({}). Creating new VNF List Container.", serviceInstanceId);
            svcData.setVnfs(new GenericResourceApiServicedataServicedataVnfs());
            svcData.getVnfs().setVnf(new ArrayList<>());
        }

        GenericResourceApiServicedataServicedataVnfs vnflist = new GenericResourceApiServicedataServicedataVnfs();
        HttpStatus responseStatus = HttpStatus.NO_CONTENT;
        if(svcData.getVnfs().getVnf().isEmpty()) {
            log.info("Creating VNF data for ({})", vnfId);
            GenericResourceApiServicedataServicedataVnfsVnf vnf = new GenericResourceApiServicedataServicedataVnfsVnf();
            vnf.setVnfId(vnfId);
            vnf.setVnfData(new GenericResourceApiServicedataServicedataVnfsVnfVnfData());
            vnf.getVnfData().setVnfTopology(new GenericResourceApiVnftopologyVnfTopology());
            vnf.getVnfData().getVnfTopology().setVnfResourceAssignments(new GenericResourceApiVnfresourceassignmentsVnfResourceAssignments());
            vnf.getVnfData().getVnfTopology().getVnfResourceAssignments().setVnfNetworks(genericResourceApiVnfresourceassignmentsVnfresourceassignmentsVnfNetworksBodyParam);
            vnflist.addVnfItem(vnf);
            responseStatus = HttpStatus.CREATED;
        } else {
            log.info("Updating VNF data for ({})", vnfId);
            // Filter out all of the other vnf objects into a new VNF List
            // Replace if a delete method exists
            svcData.getVnfs()
                    .getVnf()
                    .stream()
                    .filter(targetVnf -> !targetVnf.getVnfId().equals(vnfId))
                    .forEach(vnflist::addVnfItem);
            GenericResourceApiServicedataServicedataVnfsVnf vnf = new GenericResourceApiServicedataServicedataVnfsVnf();
            // If the vnf exists, set it up with new data
            Optional<GenericResourceApiServicedataServicedataVnfsVnf> vnfOptional = getVnfObject(data, vnfId);
            if(vnfOptional.isPresent()) {
                vnf = vnfOptional.get();
            }
            if(vnf.getVnfData() == null) {
                vnf.setVnfData(new GenericResourceApiServicedataServicedataVnfsVnfVnfData());
            }
            if(vnf.getVnfData().getVnfTopology() == null) {
                vnf.getVnfData().setVnfTopology(new GenericResourceApiVnftopologyVnfTopology());
            }
            if(vnf.getVnfData().getVnfTopology().getVnfResourceAssignments() == null) {
                vnf.getVnfData().getVnfTopology().setVnfResourceAssignments(new GenericResourceApiVnfresourceassignmentsVnfResourceAssignments());
                responseStatus = HttpStatus.CREATED;
            }

            vnf.getVnfData().getVnfTopology().getVnfResourceAssignments().setVnfNetworks(genericResourceApiVnfresourceassignmentsVnfresourceassignmentsVnfNetworksBodyParam);
            vnflist.addVnfItem(vnf);
        }

        svcData.setVnfs(vnflist);
        // Map and save the new data
        try {
            data.setSvcData(objectMapper.writeValueAsString(svcData));
            configServicesRepository.save(data);
            return new ResponseEntity<>(responseStatus);
        } catch(JsonProcessingException e) {
            log.error("Error mapping object to JSON", e);
            // Should probably be a 500 INTERNAL_SERVICE_ERROR
            return new ResponseEntity<>(HttpStatus.BAD_REQUEST);
        }
    }

    /**
     * Creates or updates VNF Network Role data in the Config table for a
     * specified Service Instance. If it is a new Service Instance or a new
     * VNF, creates all necessary parent data containers, then performs the
     * updates.
     * <p>
     * Maps to /config/GENERIC-RESOURCE-API:services/service/{service-instance-id}/service-data/vnfs/vnf/{vnf-id}/vnf-data/vnf-topology/vnf-resource-assignments/vnf-networks/vnf-network/{network-role}/
     * @param serviceInstanceId the Service Instance ID to perform the delete on
     * @param vnfId the VNF ID of the VNF to delete
     * @param genericResourceApiVnfNetworkDataBodyParam the payload
     * @return HttpStatus.CREATED (201) on successful create.
     *         <p>
     *         HttpStatus.NO_CONTENT (204) on successful update.
     *         <p>
     *         HttpStatus.BAD_REQUEST (400) if updating the database fails.
     * @throws RestException
     */
    @Override
    public ResponseEntity<Void> configGENERICRESOURCEAPIservicesServiceServiceInstanceIdServiceDataVnfsVnfVnfIdVnfDataVnfTopologyVnfResourceAssignmentsVnfNetworksVnfNetworkNetworkRolePut(String serviceInstanceId, String vnfId, String networkRole, GenericResourceApiVnfNetworkData genericResourceApiVnfNetworkDataBodyParam) throws RestException {
        log.info("PUT | VNF Network Network Role ({})", vnfId);
        if(!networkRole.equals(genericResourceApiVnfNetworkDataBodyParam.getNetworkRole())) {
            throw new RestProtocolException("bad-attribute", "network-role mismatch", HttpStatus.BAD_REQUEST.value());
        }
        if(getObjectMapper().isPresent() && getAcceptHeader().isPresent()) {
        } else {
            log.warn("ObjectMapper or HttpServletRequest not configured in default ConfigApi interface so no example is generated");
        }

        List<ConfigServices> services = configServicesRepository.findBySvcInstanceId(serviceInstanceId);
        ConfigServices data;
        if((services == null) || (services.isEmpty())) {
            log.info("Could not find data for ({}). Creating new Service Object.", serviceInstanceId);
            data = new ConfigServices();
            data.setSvcInstanceId(serviceInstanceId);
        } else {
            data = services.get(0);
        }

        GenericResourceApiServicedataServiceData svcData = null;
        try {
            svcData = objectMapper.readValue(data.getSvcData(), GenericResourceApiServicedataServiceData.class);
        } catch(JsonProcessingException e) {
            log.error("Could not map service data for ({})", serviceInstanceId);
        }
        if(svcData == null) {
            log.info("Could not find Service Data for ({}). Creating new Service Data Container", serviceInstanceId);
            svcData = new GenericResourceApiServicedataServiceData();
        }
        if(svcData.getVnfs() == null) {
            log.info("VNF List not found for ({}). Creating new VNF List Container.", serviceInstanceId);
            svcData.setVnfs(new GenericResourceApiServicedataServicedataVnfs());
            svcData.getVnfs().setVnf(new ArrayList<>());
        }

        GenericResourceApiServicedataServicedataVnfs vnflist = new GenericResourceApiServicedataServicedataVnfs();
        HttpStatus responseStatus = HttpStatus.NO_CONTENT;
        if(svcData.getVnfs().getVnf().isEmpty()) {
            log.info("Creating VNF data for ({})", vnfId);
            GenericResourceApiServicedataServicedataVnfsVnf vnf = new GenericResourceApiServicedataServicedataVnfsVnf();
            vnf.setVnfId(vnfId);
            vnf.setVnfData(new GenericResourceApiServicedataServicedataVnfsVnfVnfData());
            vnf.getVnfData().setVnfTopology(new GenericResourceApiVnftopologyVnfTopology());
            vnf.getVnfData().getVnfTopology().setVnfResourceAssignments(new GenericResourceApiVnfresourceassignmentsVnfResourceAssignments());
            vnf.getVnfData().getVnfTopology().getVnfResourceAssignments().setVnfNetworks(new GenericResourceApiVnfresourceassignmentsVnfresourceassignmentsVnfNetworks());
            vnf.getVnfData().getVnfTopology().getVnfResourceAssignments().getVnfNetworks().setVnfNetwork(new ArrayList<>());
            vnf.getVnfData().getVnfTopology().getVnfResourceAssignments().getVnfNetworks().addVnfNetworkItem(genericResourceApiVnfNetworkDataBodyParam);
            vnflist.addVnfItem(vnf);
            responseStatus = HttpStatus.CREATED;
        } else {
            log.info("Updating VNF data for ({})", vnfId);
            // Filter out all of the other vnf objects into a new VNF List
            // Replace if a delete method exists
            svcData.getVnfs()
                    .getVnf()
                    .stream()
                    .filter(targetVnf -> !targetVnf.getVnfId().equals(vnfId))
                    .forEach(vnflist::addVnfItem);
            GenericResourceApiServicedataServicedataVnfsVnf vnf = new GenericResourceApiServicedataServicedataVnfsVnf();
            // If the vnf exists, set it up with new data
            Optional<GenericResourceApiServicedataServicedataVnfsVnf> vnfOptional = getVnfObject(data, vnfId);
            if(vnfOptional.isPresent()) {
                vnf = vnfOptional.get();
            }
            if(vnf.getVnfData() == null) {
                vnf.setVnfData(new GenericResourceApiServicedataServicedataVnfsVnfVnfData());
            }
            if(vnf.getVnfData().getVnfTopology() == null) {
                vnf.getVnfData().setVnfTopology(new GenericResourceApiVnftopologyVnfTopology());
            }
            if(vnf.getVnfData().getVnfTopology().getVnfResourceAssignments() == null) {
                vnf.getVnfData().getVnfTopology().setVnfResourceAssignments(new GenericResourceApiVnfresourceassignmentsVnfResourceAssignments());
            }
            if(vnf.getVnfData().getVnfTopology().getVnfResourceAssignments().getVnfNetworks() == null) {
                log.info("Creating new VnfNetworks");
                vnf.getVnfData().getVnfTopology().getVnfResourceAssignments().setVnfNetworks(new GenericResourceApiVnfresourceassignmentsVnfresourceassignmentsVnfNetworks());
            }

            GenericResourceApiVnfresourceassignmentsVnfresourceassignmentsVnfNetworks networkList = new GenericResourceApiVnfresourceassignmentsVnfresourceassignmentsVnfNetworks();
            if(vnf.getVnfData().getVnfTopology().getVnfResourceAssignments().getVnfNetworks().getVnfNetwork().isEmpty()) {
                log.info("First entry into network info.");
                vnf.getVnfData().getVnfTopology().getVnfResourceAssignments().getVnfNetworks().addVnfNetworkItem(genericResourceApiVnfNetworkDataBodyParam);
                responseStatus = HttpStatus.CREATED;
            } else {
                log.info("Found networks. Filtering.");
                vnf.getVnfData().getVnfTopology().getVnfResourceAssignments().getVnfNetworks().getVnfNetwork().stream()
                        .filter(targetNetwork -> !targetNetwork.getNetworkRole().equals(networkRole))
                        .forEach(networkList::addVnfNetworkItem);
                networkList.addVnfNetworkItem(genericResourceApiVnfNetworkDataBodyParam);

                if(networkList.getVnfNetwork().size() != vnf.getVnfData().getVnfTopology().getVnfResourceAssignments().getVnfNetworks().getVnfNetwork().size()) {
                    log.info("Added a new Item");
                    responseStatus = HttpStatus.CREATED;
                }
                vnf.getVnfData().getVnfTopology().getVnfResourceAssignments().setVnfNetworks(networkList);
            }

            vnflist.addVnfItem(vnf);
        }

        svcData.setVnfs(vnflist);
        // Map and save the new data
        try {
            data.setSvcData(objectMapper.writeValueAsString(svcData));
            configServicesRepository.save(data);
            return new ResponseEntity<>(responseStatus);
        } catch(JsonProcessingException e) {
            log.error("Error mapping object to JSON", e);
            // Should probably be a 500 INTERNAL_SERVICE_ERROR
            return new ResponseEntity<>(HttpStatus.BAD_REQUEST);
        }
    }

    /**
     * Extracts a VNF object from the database,
     * @param configServices A Config Services option created from a Service
     *                       Instance ID
     * @param vnfId the target VNF ID
     * @return An empty Optional if the Service Data does not exist, an empty
     *         Optional if the VNF is not found, or an optional containing the
     *         found VNF.
     */
    private Optional<GenericResourceApiServicedataServicedataVnfsVnf> getVnfObject(ConfigServices configServices, String vnfId) {
        // Map the Marshall the JSON String into a Java Object
        log.info("Getting VNF Data for ({})", vnfId);
        GenericResourceApiServicedataServiceData svcData;
        try {
            svcData = objectMapper.readValue(configServices.getSvcData(), GenericResourceApiServicedataServiceData.class);
        } catch(JsonProcessingException e) {
            log.error("Error", e);
            return Optional.empty();
        }

        /*Get a stream of the VNF Objects and return the target if it's found,
         * assuming that each VNF ID is unique within a Service Instance Object
         */
        return svcData.getVnfs().getVnf()
                       .stream()
                       .filter(targetVnf -> targetVnf.getVnfId().equals(vnfId))
                       .findFirst();
    }
}