aboutsummaryrefslogtreecommitdiffstats
path: root/aai-core/src/main/java/org/onap/aai/rest/db/HttpEntry.java
blob: 8556c111ea33c80eda031d143124c7cfd8d33120 (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
/**
 * ============LICENSE_START=======================================================
 * org.onap.aai
 * ================================================================================
 * Copyright © 2017-2018 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.aai.rest.db;

import com.att.eelf.configuration.EELFLogger;
import com.att.eelf.configuration.EELFManager;
import com.fasterxml.jackson.databind.JsonNode;
import com.fasterxml.jackson.databind.ObjectMapper;
import com.github.fge.jsonpatch.JsonPatchException;
import com.github.fge.jsonpatch.mergepatch.JsonMergePatch;

import java.io.IOException;
import java.io.UnsupportedEncodingException;
import java.lang.reflect.InvocationTargetException;
import java.net.MalformedURLException;
import java.net.URI;
import java.net.URISyntaxException;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.Set;
import java.util.concurrent.TimeUnit;
import java.util.stream.Collectors;

import javax.ws.rs.core.HttpHeaders;
import javax.ws.rs.core.MediaType;
import javax.ws.rs.core.MultivaluedMap;
import javax.ws.rs.core.Response;
import javax.ws.rs.core.Response.Status;
import javax.ws.rs.core.UriBuilder;

import org.apache.commons.lang.StringUtils;
import org.apache.tinkerpop.gremlin.structure.Graph;
import org.apache.tinkerpop.gremlin.structure.Vertex;
import org.apache.tinkerpop.gremlin.structure.VertexProperty;
import org.janusgraph.core.JanusGraphException;
import org.javatuples.Pair;
import org.json.JSONException;
import org.json.JSONObject;
import org.onap.aai.db.props.AAIProperties;
import org.onap.aai.dbmap.DBConnectionType;
import org.onap.aai.domain.responseMessage.AAIResponseMessage;
import org.onap.aai.domain.responseMessage.AAIResponseMessageDatum;
import org.onap.aai.exceptions.AAIException;
import org.onap.aai.extensions.AAIExtensionMap;
import org.onap.aai.extensions.ExtensionController;
import org.onap.aai.introspection.*;
import org.onap.aai.introspection.exceptions.AAIUnknownObjectException;
import org.onap.aai.logging.ErrorLogHelper;
import org.onap.aai.logging.LoggingContext;
import org.onap.aai.nodes.NodeIngestor;
import org.onap.aai.parsers.query.QueryParser;
import org.onap.aai.parsers.uri.URIToExtensionInformation;
import org.onap.aai.parsers.uri.URIToObject;
import org.onap.aai.rest.ueb.UEBNotification;
import org.onap.aai.restcore.HttpMethod;
import org.onap.aai.schema.enums.ObjectMetadata;
import org.onap.aai.serialization.db.DBSerializer;
import org.onap.aai.serialization.engines.JanusGraphDBEngine;
import org.onap.aai.serialization.engines.QueryStyle;
import org.onap.aai.serialization.engines.TransactionalGraphEngine;
import org.onap.aai.serialization.engines.query.QueryEngine;
import org.onap.aai.serialization.queryformats.Format;
import org.onap.aai.serialization.queryformats.FormatFactory;
import org.onap.aai.serialization.queryformats.Formatter;
import org.onap.aai.setup.SchemaVersion;
import org.onap.aai.setup.SchemaVersions;
import org.onap.aai.util.AAIConfig;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Value;

/**
 * The Class HttpEntry.
 */
public class HttpEntry {

    private static final EELFLogger LOGGER = EELFManager.getInstance().getLogger(HttpEntry.class);
    private static final String TARGET_ENTITY = "DB";

    private ModelType introspectorFactoryType;

    private QueryStyle queryStyle;

    private SchemaVersion version;

    private Loader loader;

    private TransactionalGraphEngine dbEngine;

    private boolean processSingle = true;

    private int paginationBucket = -1;
    private int paginationIndex = -1;
    private int totalVertices = 0;
    private int totalPaginationBuckets = 0;

    @Autowired
    private NodeIngestor nodeIngestor;

    @Autowired
    private LoaderFactory loaderFactory;

    @Autowired
    private SchemaVersions schemaVersions;

    @Value("${schema.uri.base.path}")
    private String basePath;

    private UEBNotification notification;

    /**
     * Instantiates a new http entry.
     *
     * @param modelType the model type
     * @param queryStyle the query style
     */
    public HttpEntry(ModelType modelType, QueryStyle queryStyle) {
        this.introspectorFactoryType = modelType;
        this.queryStyle = queryStyle;
    }

    public HttpEntry setHttpEntryProperties(SchemaVersion version, DBConnectionType connectionType) {
        this.version = version;
        this.loader = loaderFactory.createLoaderForVersion(introspectorFactoryType, version);
        this.dbEngine = new JanusGraphDBEngine(queryStyle, connectionType, loader);

        getDbEngine().startTransaction();
        this.notification = new UEBNotification(loader, loaderFactory, schemaVersions);
        return this;
    }

    public HttpEntry setHttpEntryProperties(SchemaVersion version, DBConnectionType connectionType,
            UEBNotification notification) {
        this.version = version;
        this.loader = loaderFactory.createLoaderForVersion(introspectorFactoryType, version);
        this.dbEngine = new JanusGraphDBEngine(queryStyle, connectionType, loader);

        this.notification = notification;
        // start transaction on creation
        getDbEngine().startTransaction();
        return this;
    }

    /**
     * Gets the introspector factory type.
     *
     * @return the introspector factory type
     */
    public ModelType getIntrospectorFactoryType() {
        return introspectorFactoryType;
    }

    /**
     * Gets the query style.
     *
     * @return the query style
     */
    public QueryStyle getQueryStyle() {
        return queryStyle;
    }

    /**
     * Gets the version.
     *
     * @return the version
     */
    public SchemaVersion getVersion() {
        return version;
    }

    /**
     * Gets the loader.
     *
     * @return the loader
     */
    public Loader getLoader() {
        return loader;
    }

    /**
     * Gets the db engine.
     *
     * @return the db engine
     */
    public TransactionalGraphEngine getDbEngine() {
        return dbEngine;
    }

    public Pair<Boolean, List<Pair<URI, Response>>> process(List<DBRequest> requests, String sourceOfTruth)
            throws AAIException {
        return this.process(requests, sourceOfTruth, true);
    }

    /**
     * Checks the pagination bucket and pagination index variables to determine whether or not the user
     * requested paginated results
     *
     * @return a boolean true/false of whether the user requested paginated results
     */
    public boolean isPaginated() {
        return this.paginationBucket > -1 && this.paginationIndex > -1;
    }

    /**
     * Returns the pagination size
     * 
     * @return integer of the size of results to be returned when paginated
     */
    public int getPaginationBucket() {
        return this.paginationBucket;
    }

    /**
     * Setter for the pagination bucket variable which stores in this object the size of results to return
     * 
     * @param pb
     */
    public void setPaginationBucket(int pb) {
        this.paginationBucket = pb;
    }

    /**
     * Getter to return the pagination index requested by the user when requesting paginated results
     * 
     * @return
     */
    public int getPaginationIndex() {
        return this.paginationIndex;
    }

    /**
     * Sets the pagination index that was passed in by the user, to determine which index or results to retrieve when
     * paginated
     * 
     * @param pi
     */
    public void setPaginationIndex(int pi) {
        if (pi == 0) {
            pi = 1;
        }
        this.paginationIndex = pi;
    }

    /**
     * Sets the total vertices variables and calculates the amount of pages based on size and total vertices
     * 
     * @param totalVertices
     * @param paginationBucketSize
     */
    public void setTotalsForPaging(int totalVertices, int paginationBucketSize) {
        this.totalVertices = totalVertices;
        // set total number of buckets equal to full pages
        this.totalPaginationBuckets = totalVertices / paginationBucketSize;
        // conditionally add a page for the remainder
        if (totalVertices % paginationBucketSize > 0) {
            this.totalPaginationBuckets++;
        }
    }

    /**
     * @return the total amount of pages
     */
    public int getTotalPaginationBuckets() {
        return this.totalPaginationBuckets;
    }

    /**
     *
     * @return the total number of vertices when paginated
     */
    public int getTotalVertices() {
        return this.totalVertices;
    }

    /**
     * Process.
     * 
     * @param requests the requests
     * @param sourceOfTruth the source of truth
     *
     * @return the pair
     * @throws AAIException the AAI exception
     */
    public Pair<Boolean, List<Pair<URI, Response>>> process(List<DBRequest> requests, String sourceOfTruth,
            boolean enableResourceVersion) throws AAIException {

        DBSerializer serializer = new DBSerializer(version, dbEngine, introspectorFactoryType, sourceOfTruth);
        String methodName = "process";
        Response response;
        Introspector obj = null;
        QueryParser query = null;
        URI uri = null;
        String transactionId = null;
        int depth = AAIProperties.MAXIMUM_DEPTH;
        Format format = null;
        List<Pair<URI, Response>> responses = new ArrayList<>();
        MultivaluedMap<String, String> params = null;
        HttpMethod method = null;
        String uriTemp = "";
        Boolean success = true;
        QueryEngine queryEngine = dbEngine.getQueryEngine();
        int maxRetries = 10;
        int retry = 0;

        LoggingContext.save();
        for (DBRequest request : requests) {
            response = null;
            Status status = Status.NOT_FOUND;
            method = request.getMethod();
            try {
                for (retry = 0; retry < maxRetries; ++retry) {
                    try {

                        LoggingContext.targetEntity(TARGET_ENTITY);
                        LoggingContext.targetServiceName(methodName + " " + method);

                        obj = request.getIntrospector();
                        query = request.getParser();
                        transactionId = request.getTransactionId();
                        uriTemp = request.getUri().getRawPath().replaceFirst("^v\\d+/", "");
                        uri = UriBuilder.fromPath(uriTemp).build();
                        LoggingContext.startTime();
                        List<Vertex> vertTemp;
                        List<Vertex> vertices;
                        if (this.isPaginated()) {
                            vertTemp = query.getQueryBuilder().toList();
                            this.setTotalsForPaging(vertTemp.size(), this.paginationBucket);
                            vertices = vertTemp.subList(((this.paginationIndex - 1) * this.paginationBucket),
                                    Math.min((this.paginationBucket * this.paginationIndex), vertTemp.size()));
                        } else {
                            vertices = query.getQueryBuilder().toList();
                        }
                        boolean isNewVertex = false;
                        String outputMediaType = getMediaType(request.getHeaders().getAcceptableMediaTypes());
                        String result = null;
                        params = request.getInfo().getQueryParameters(false);
                        depth = setDepth(obj, params.getFirst("depth"));
                        if (params.containsKey("format")) {
                            format = Format.getFormat(params.getFirst("format"));
                        }
                        String cleanUp = params.getFirst("cleanup");
                        String requestContext = "";
                        List<String> requestContextList = request.getHeaders().getRequestHeader("aai-request-context");
                        if (requestContextList != null) {
                            requestContext = requestContextList.get(0);
                        }

                        if (cleanUp == null) {
                            cleanUp = "false";
                        }
                        if (vertices.size() > 1 && processSingle
                                && !(method.equals(HttpMethod.GET) || method.equals(HttpMethod.GET_RELATIONSHIP))) {
                            if (method.equals(HttpMethod.DELETE)) {
                                LoggingContext.restoreIfPossible();
                                throw new AAIException("AAI_6138");
                            } else {
                                LoggingContext.restoreIfPossible();
                                throw new AAIException("AAI_6137");
                            }
                        }
                        if (method.equals(HttpMethod.PUT)) {
                            String resourceVersion = (String) obj.getValue("resource-version");
                            if (vertices.isEmpty()) {
                                if (enableResourceVersion) {
                                    serializer.verifyResourceVersion("create", query.getResultType(), "",
                                            resourceVersion, obj.getURI());
                                }
                                isNewVertex = true;
                            } else {
                                if (enableResourceVersion) {
                                    serializer.verifyResourceVersion("update", query.getResultType(),
                                            vertices.get(0).<String>property("resource-version").orElse(null),
                                            resourceVersion, obj.getURI());
                                }
                                isNewVertex = false;
                            }
                        } else {
                            if (vertices.isEmpty()) {
                                String msg = createNotFoundMessage(query.getResultType(), request.getUri());
                                throw new AAIException("AAI_6114", msg);
                            } else {
                                isNewVertex = false;
                            }
                        }
                        Vertex v = null;
                        if (!isNewVertex) {
                            v = vertices.get(0);
                        }
                        HashMap<String, Introspector> relatedObjects = new HashMap<>();
                        String nodeOnly = params.getFirst("nodes-only");
                        boolean isNodeOnly = nodeOnly != null;
                        switch (method) {
                            case GET:

                                if (format == null) {
                                    obj = this.getObjectFromDb(vertices, serializer, query, obj, request.getUri(),
                                            depth, isNodeOnly, cleanUp);

                                    LoggingContext.elapsedTime((long) serializer.getDBTimeMsecs(),
                                            TimeUnit.MILLISECONDS);
                                    LOGGER.info("Completed");
                                    LoggingContext.restoreIfPossible();

                                    if (obj != null) {
                                        status = Status.OK;
                                        MarshallerProperties properties;
                                        if (!request.getMarshallerProperties().isPresent()) {
                                            properties = new MarshallerProperties.Builder(
                                                    org.onap.aai.restcore.MediaType.getEnum(outputMediaType)).build();
                                        } else {
                                            properties = request.getMarshallerProperties().get();
                                        }
                                        result = obj.marshal(properties);
                                    }
                                } else {
                                    FormatFactory ff =
                                            new FormatFactory(loader, serializer, schemaVersions, basePath + "/");
                                    Formatter formatter = ff.get(format, params);
                                    result = formatter.output(vertices.stream().map(vertex -> (Object) vertex)
                                            .collect(Collectors.toList())).toString();
                                    status = Status.OK;
                                }

                                break;
                            case GET_RELATIONSHIP:
                                if (format == null) {
                                    obj = this.getRelationshipObjectFromDb(vertices, serializer, query,
                                            request.getInfo().getRequestUri());

                                    LoggingContext.elapsedTime((long) serializer.getDBTimeMsecs(),
                                            TimeUnit.MILLISECONDS);
                                    LOGGER.info("Completed");
                                    LoggingContext.restoreIfPossible();

                                    if (obj != null) {
                                        status = Status.OK;
                                        MarshallerProperties properties;
                                        if (!request.getMarshallerProperties().isPresent()) {
                                            properties = new MarshallerProperties.Builder(
                                                    org.onap.aai.restcore.MediaType.getEnum(outputMediaType)).build();
                                        } else {
                                            properties = request.getMarshallerProperties().get();
                                        }
                                        result = obj.marshal(properties);
                                    } else {
                                        String msg = createRelationshipNotFoundMessage(query.getResultType(),
                                                request.getUri());
                                        throw new AAIException("AAI_6149", msg);
                                    }
                                } else {
                                    FormatFactory ff =
                                            new FormatFactory(loader, serializer, schemaVersions, basePath + "/");
                                    Formatter formatter = ff.get(format, params);
                                    result = formatter.output(vertices.stream().map(vertex -> (Object) vertex)
                                            .collect(Collectors.toList())).toString();
                                    status = Status.OK;
                                }
                                break;
                            case PUT:
                                response = this.invokeExtension(dbEngine, this.dbEngine.tx(), method, request,
                                        sourceOfTruth, version, loader, obj, uri, true);
                                if (isNewVertex) {
                                    v = serializer.createNewVertex(obj);
                                }
                                serializer.serializeToDb(obj, v, query, uri.getRawPath(), requestContext);
                                this.invokeExtension(dbEngine, this.dbEngine.tx(), HttpMethod.PUT, request,
                                        sourceOfTruth, version, loader, obj, uri, false);
                                status = Status.OK;
                                if (isNewVertex) {
                                    status = Status.CREATED;
                                }
                                obj = serializer.getLatestVersionView(v);
                                if (query.isDependent()) {
                                    relatedObjects =
                                            this.getRelatedObjects(serializer, queryEngine, v, obj, this.loader);
                                }
                                LoggingContext.elapsedTime(
                                        (long) serializer.getDBTimeMsecs() + (long) queryEngine.getDBTimeMsecs(),
                                        TimeUnit.MILLISECONDS);
                                LOGGER.info("Completed ");
                                LoggingContext.restoreIfPossible();
                                notification.createNotificationEvent(transactionId, sourceOfTruth, status, uri, obj,
                                        relatedObjects, basePath);

                                break;
                            case PUT_EDGE:
                                serializer.touchStandardVertexProperties(v, false);
                                this.invokeExtension(dbEngine, this.dbEngine.tx(), method, request, sourceOfTruth,
                                        version, loader, obj, uri, true);
                                serializer.createEdge(obj, v);

                                LoggingContext.elapsedTime((long) serializer.getDBTimeMsecs(), TimeUnit.MILLISECONDS);
                                LOGGER.info("Completed");
                                LoggingContext.restoreIfPossible();
                                status = Status.OK;
                                notification.createNotificationEvent(transactionId, sourceOfTruth, status,
                                        new URI(uri.toString().replace("/relationship-list/relationship", "")),
                                        serializer.getLatestVersionView(v), relatedObjects, basePath);
                                break;
                            case MERGE_PATCH:
                                Introspector existingObj = loader.introspectorFromName(obj.getDbName());
                                existingObj = this.getObjectFromDb(vertices, serializer, query, existingObj,
                                        request.getUri(), 0, false, cleanUp);
                                String existingJson = existingObj.marshal(false);
                                String newJson;

                                if (request.getRawRequestContent().isPresent()) {
                                    newJson = request.getRawRequestContent().get();
                                } else {
                                    newJson = "";
                                }
                                Object relationshipList = request.getIntrospector().getValue("relationship-list");
                                ObjectMapper mapper = new ObjectMapper();
                                try {
                                    JsonNode existingNode = mapper.readTree(existingJson);
                                    JsonNode newNode = mapper.readTree(newJson);
                                    JsonMergePatch patch = JsonMergePatch.fromJson(newNode);
                                    JsonNode completed = patch.apply(existingNode);
                                    String patched = mapper.writeValueAsString(completed);
                                    Introspector patchedObj = loader.unmarshal(existingObj.getName(), patched);
                                    if (relationshipList == null) {
                                        // if the caller didn't touch the relationship-list, we shouldn't either
                                        patchedObj.setValue("relationship-list", null);
                                    }
                                    serializer.serializeToDb(patchedObj, v, query, uri.getRawPath(), requestContext);
                                    status = Status.OK;
                                    patchedObj = serializer.getLatestVersionView(v);
                                    if (query.isDependent()) {
                                        relatedObjects = this.getRelatedObjects(serializer, queryEngine, v, patchedObj,
                                                this.loader);
                                    }
                                    LoggingContext.elapsedTime(
                                            (long) serializer.getDBTimeMsecs() + (long) queryEngine.getDBTimeMsecs(),
                                            TimeUnit.MILLISECONDS);
                                    LOGGER.info("Completed");
                                    LoggingContext.restoreIfPossible();
                                    notification.createNotificationEvent(transactionId, sourceOfTruth, status, uri,
                                            patchedObj, relatedObjects, basePath);
                                } catch (IOException | JsonPatchException e) {

                                    LOGGER.info("Caught exception: " + e.getMessage());
                                    LoggingContext.restoreIfPossible();
                                    throw new AAIException("AAI_3000", "could not perform patch operation");
                                }
                                break;
                            case DELETE:
                                String resourceVersion = params.getFirst("resource-version");
                                obj = serializer.getLatestVersionView(v);
                                if (query.isDependent()) {
                                    relatedObjects =
                                            this.getRelatedObjects(serializer, queryEngine, v, obj, this.loader);
                                }
                                /*
                                 * Find all Delete-other-vertex vertices and create structure for notify
                                 * findDeleatble also returns the startVertex v and we dont want to create
                                 * duplicate notification events for the same
                                 * So remove the startvertex first
                                 */

                                List<Vertex> deletableVertices = dbEngine.getQueryEngine().findDeletable(v);
                                Long vId = (Long) v.id();

                                /*
                                 * I am assuming vertexId cant be null
                                 */
                                deletableVertices.removeIf(s -> vId.equals(s.id()));
                                boolean isDelVerticesPresent = !deletableVertices.isEmpty();
                                Map<Vertex, Introspector> deleteObjects = new HashMap<>();
                                Map<String, URI> uriMap = new HashMap<>();
                                Map<String, HashMap<String, Introspector>> deleteRelatedObjects = new HashMap<>();

                                if (isDelVerticesPresent) {
                                    deleteObjects = this.buildIntrospectorObjects(serializer, deletableVertices);

                                    uriMap = this.buildURIMap(serializer, deleteObjects);
                                    deleteRelatedObjects =
                                            this.buildRelatedObjects(serializer, queryEngine, deleteObjects);
                                }

                                this.invokeExtension(dbEngine, this.dbEngine.tx(), method, request, sourceOfTruth,
                                        version, loader, obj, uri, true);
                                serializer.delete(v, deletableVertices, resourceVersion, enableResourceVersion);
                                this.invokeExtension(dbEngine, this.dbEngine.tx(), method, request, sourceOfTruth,
                                        version, loader, obj, uri, false);

                                LoggingContext.elapsedTime(
                                        (long) serializer.getDBTimeMsecs() + (long) queryEngine.getDBTimeMsecs(),
                                        TimeUnit.MILLISECONDS);
                                LOGGER.info("Completed");
                                LoggingContext.restoreIfPossible();
                                status = Status.NO_CONTENT;
                                notification.createNotificationEvent(transactionId, sourceOfTruth, status, uri, obj,
                                        relatedObjects, basePath);

                                /*
                                 * Notify delete-other-v candidates
                                 */

                                if (isDelVerticesPresent) {
                                    this.buildNotificationEvent(sourceOfTruth, status, transactionId, notification,
                                            deleteObjects, uriMap, deleteRelatedObjects, basePath);
                                }

                                break;
                            case DELETE_EDGE:
                                serializer.touchStandardVertexProperties(v, false);
                                serializer.deleteEdge(obj, v);

                                LoggingContext.elapsedTime((long) serializer.getDBTimeMsecs(), TimeUnit.MILLISECONDS);
                                LOGGER.info("Completed");
                                LoggingContext.restoreIfPossible();
                                status = Status.NO_CONTENT;
                                notification.createNotificationEvent(transactionId, sourceOfTruth, Status.OK,
                                        new URI(uri.toString().replace("/relationship-list/relationship", "")),
                                        serializer.getLatestVersionView(v), relatedObjects, basePath);
                                break;
                            default:
                                break;
                        }

                        /*
                         * temporarily adding vertex id to the headers
                         * to be able to use for testing the vertex id endpoint functionality
                         * since we presently have no other way of generating those id urls
                         */
                        if (response == null && v != null
                                && (method.equals(HttpMethod.PUT) || method.equals(HttpMethod.GET)
                                        || method.equals(HttpMethod.MERGE_PATCH)
                                        || method.equals(HttpMethod.GET_RELATIONSHIP))

                        ) {
                            String myvertid = v.id().toString();
                            if (this.isPaginated()) {
                                response = Response.status(status).header("vertex-id", myvertid)
                                        .header("total-results", this.getTotalVertices())
                                        .header("total-pages", this.getTotalPaginationBuckets()).entity(result)
                                        .type(outputMediaType).build();
                            } else {
                                response = Response.status(status).header("vertex-id", myvertid).entity(result)
                                        .type(outputMediaType).build();
                            }
                        } else if (response == null) {
                            response = Response.status(status).type(outputMediaType).build();
                        } else {
                            // response already set to something
                        }
                        Pair<URI, Response> pairedResp = Pair.with(request.getUri(), response);
                        responses.add(pairedResp);
                        // break out of retry loop
                        break;
                    } catch (JanusGraphException e) {
                        this.dbEngine.rollback();

                        LOGGER.info("Caught exception: " + e.getMessage());
                        LoggingContext.restoreIfPossible();
                        AAIException ex = new AAIException("AAI_6142", e);
                        ErrorLogHelper.logException(ex);
                        Thread.sleep((retry + 1) * 20L);
                        this.dbEngine.startTransaction();
                        queryEngine = dbEngine.getQueryEngine();
                        serializer = new DBSerializer(version, dbEngine, introspectorFactoryType, sourceOfTruth);
                    }
                    if (retry == maxRetries) {
                        throw new AAIException("AAI_6134");
                    }
                }
            } catch (AAIException e) {
                success = false;
                ArrayList<String> templateVars = new ArrayList<>();
                templateVars.add(request.getMethod().toString()); // GET, PUT, etc
                templateVars.add(request.getUri().getPath());
                templateVars.addAll(e.getTemplateVars());
                ErrorLogHelper.logException(e);
                response = Response.status(e.getErrorObject().getHTTPResponseCode()).entity(ErrorLogHelper
                        .getRESTAPIErrorResponse(request.getHeaders().getAcceptableMediaTypes(), e, templateVars))
                        .build();
                Pair<URI, Response> pairedResp = Pair.with(request.getUri(), response);
                responses.add(pairedResp);
                continue;
            } catch (Exception e) {
                success = false;
                e.printStackTrace();
                AAIException ex = new AAIException("AAI_4000", e);
                ArrayList<String> templateVars = new ArrayList<String>();
                templateVars.add(request.getMethod().toString()); // GET, PUT, etc
                templateVars.add(request.getUri().getPath().toString());
                ErrorLogHelper.logException(ex);
                response = Response.status(ex.getErrorObject().getHTTPResponseCode()).entity(ErrorLogHelper
                        .getRESTAPIErrorResponse(request.getHeaders().getAcceptableMediaTypes(), ex, templateVars))
                        .build();
                Pair<URI, Response> pairedResp = Pair.with(request.getUri(), response);
                responses.add(pairedResp);
                continue;
            }
        }
        notification.triggerEvents();
        return Pair.with(success, responses);
    }

    /**
     * Gets the media type.
     *
     * @param mediaTypeList the media type list
     * @return the media type
     */
    private String getMediaType(List<MediaType> mediaTypeList) {
        String mediaType = MediaType.APPLICATION_JSON; // json is the default
        for (MediaType mt : mediaTypeList) {
            if (MediaType.APPLICATION_XML_TYPE.isCompatible(mt)) {
                mediaType = MediaType.APPLICATION_XML;
            }
        }
        return mediaType;
    }

    /**
     * Gets the object from db.
     *
     * @param serializer the serializer
     * @param query the query
     * @param obj the obj
     * @param uri the uri
     * @param depth the depth
     * @param cleanUp the clean up
     * @return the object from db
     * @throws AAIException the AAI exception
     * @throws IllegalAccessException the illegal access exception
     * @throws IllegalArgumentException the illegal argument exception
     * @throws InvocationTargetException the invocation target exception
     * @throws SecurityException the security exception
     * @throws InstantiationException the instantiation exception
     * @throws NoSuchMethodException the no such method exception
     * @throws UnsupportedEncodingException the unsupported encoding exception
     * @throws MalformedURLException the malformed URL exception
     * @throws AAIUnknownObjectException
     * @throws URISyntaxException
     */
    private Introspector getObjectFromDb(List<Vertex> results, DBSerializer serializer, QueryParser query,
            Introspector obj, URI uri, int depth, boolean nodeOnly, String cleanUp)
            throws AAIException, IllegalAccessException, IllegalArgumentException, InvocationTargetException,
            SecurityException, InstantiationException, NoSuchMethodException, UnsupportedEncodingException,
            AAIUnknownObjectException, URISyntaxException {

        // nothing found
        if (results.isEmpty()) {
            String msg = createNotFoundMessage(query.getResultType(), uri);
            throw new AAIException("AAI_6114", msg);
        }

        return serializer.dbToObject(results, obj, depth, nodeOnly, cleanUp);

    }

    /**
     * Gets the object from db.
     *
     * @param serializer the serializer
     * @param query the query
     * @param obj the obj
     * @param uri the uri
     * @param depth the depth
     * @param cleanUp the clean up
     * @return the object from db
     * @throws AAIException the AAI exception
     * @throws IllegalAccessException the illegal access exception
     * @throws IllegalArgumentException the illegal argument exception
     * @throws InvocationTargetException the invocation target exception
     * @throws SecurityException the security exception
     * @throws InstantiationException the instantiation exception
     * @throws NoSuchMethodException the no such method exception
     * @throws UnsupportedEncodingException the unsupported encoding exception
     * @throws MalformedURLException the malformed URL exception
     * @throws AAIUnknownObjectException
     * @throws URISyntaxException
     */
    private Introspector getRelationshipObjectFromDb(List<Vertex> results, DBSerializer serializer, QueryParser query,
            URI uri) throws AAIException, IllegalArgumentException, SecurityException, UnsupportedEncodingException,
            AAIUnknownObjectException {

        // nothing found
        if (results.isEmpty()) {
            String msg = createNotFoundMessage(query.getResultType(), uri);
            throw new AAIException("AAI_6114", msg);
        }

        if (results.size() > 1) {
            throw new AAIException("AAI_6148", uri.getPath());
        }

        Vertex v = results.get(0);
        return serializer.dbToRelationshipObject(v);
    }

    /**
     * Invoke extension.
     *
     * @param dbEngine the db engine
     * @param g the g
     * @param httpMethod the http method
     * @param fromAppId the from app id
     * @param apiVersion the api version
     * @param loader the loader
     * @param obj the obj
     * @param uri the uri
     * @param isPreprocess the is preprocess
     * @return the response
     * @throws IllegalArgumentException the illegal argument exception
     * @throws UnsupportedEncodingException the unsupported encoding exception
     * @throws AAIException the AAI exception
     */
    private Response invokeExtension(TransactionalGraphEngine dbEngine, Graph g, HttpMethod httpMethod,
            DBRequest request, String fromAppId, SchemaVersion apiVersion, Loader loader, Introspector obj, URI uri,
            boolean isPreprocess) throws IllegalArgumentException, UnsupportedEncodingException, AAIException {
        AAIExtensionMap aaiExtMap = new AAIExtensionMap();
        // ModelInjestor injestor = ModelInjestor.getInstance();
        Response response = null;
        URIToExtensionInformation extensionInformation = new URIToExtensionInformation(loader, uri);
        aaiExtMap.setHttpEntry(this);
        aaiExtMap.setDbRequest(request);
        aaiExtMap.setTransId(request.getTransactionId());
        aaiExtMap.setFromAppId(fromAppId);
        aaiExtMap.setGraph(g);
        aaiExtMap.setApiVersion(apiVersion.toString());
        aaiExtMap.setObjectFromRequest(obj);
        aaiExtMap.setObjectFromRequestType(obj.getJavaClassName());
        aaiExtMap.setObjectFromResponse(obj);
        aaiExtMap.setObjectFromResponseType(obj.getJavaClassName());
        aaiExtMap.setJaxbContext(nodeIngestor.getContextForVersion(apiVersion));
        aaiExtMap.setUri(uri.getRawPath());
        aaiExtMap.setTransactionalGraphEngine(dbEngine);
        aaiExtMap.setLoader(loader);
        aaiExtMap.setNamespace(extensionInformation.getNamespace());

        ExtensionController ext = new ExtensionController();
        ext.runExtension(aaiExtMap.getApiVersion(), extensionInformation.getNamespace(),
                extensionInformation.getTopObject(), extensionInformation.getMethodName(httpMethod, isPreprocess),
                aaiExtMap, isPreprocess);

        if (aaiExtMap.getPrecheckAddedList().size() > 0) {
            response = notifyOnSkeletonCreation(aaiExtMap, obj, request.getHeaders());
        }

        return response;
    }

    /**
     * Notify on skeleton creation.
     *
     * @param aaiExtMap the aai ext map
     * @param input the input
     * @param headers the headers
     * @return the response
     */
    // Legacy support
    private Response notifyOnSkeletonCreation(AAIExtensionMap aaiExtMap, Introspector input, HttpHeaders headers) {
        Response response = null;
        HashMap<AAIException, ArrayList<String>> exceptionList = new HashMap<AAIException, ArrayList<String>>();

        StringBuilder keyString = new StringBuilder();

        Set<String> resourceKeys = input.getKeys();
        for (String key : resourceKeys) {
            keyString.append(key).append("=").append(input.getValue(key).toString()).append(" ");
        }

        for (AAIResponseMessage msg : aaiExtMap.getPrecheckResponseMessages().getAAIResponseMessage()) {
            ArrayList<String> templateVars = new ArrayList<>();

            templateVars.add("PUT " + input.getDbName());
            templateVars.add(keyString.toString());
            List<String> keys = new ArrayList<>();
            templateVars.add(msg.getAaiResponseMessageResourceType());
            for (AAIResponseMessageDatum dat : msg.getAaiResponseMessageData().getAAIResponseMessageDatum()) {
                keys.add(dat.getAaiResponseMessageDatumKey() + "=" + dat.getAaiResponseMessageDatumValue());
            }
            templateVars.add(StringUtils.join(keys, ", "));
            exceptionList.put(new AAIException("AAI_0004", msg.getAaiResponseMessageResourceType()), templateVars);
        }
        response = Response.status(Status.ACCEPTED)
                .entity(ErrorLogHelper.getRESTAPIInfoResponse(headers.getAcceptableMediaTypes(), exceptionList))
                .build();

        return response;
    }

    /**
     * Creates the not found message.
     *
     * @param resultType the result type
     * @param uri the uri
     * @return the string
     */
    private String createNotFoundMessage(String resultType, URI uri) {

        String msg = "No Node of type " + resultType + " found at: " + uri.getPath();

        return msg;
    }

    /**
     * Creates the not found message.
     *
     * @param resultType the result type
     * @param uri the uri
     * @return the string
     */
    private String createRelationshipNotFoundMessage(String resultType, URI uri) {

        String msg = "No relationship found of type " + resultType + " at the given URI: " + uri.getPath()
                + "/relationship-list";

        return msg;
    }

    /**
     * Sets the depth.
     *
     * @param depthParam the depth param
     * @return the int
     * @throws AAIException the AAI exception
     */
    protected int setDepth(Introspector obj, String depthParam) throws AAIException {
        int depth = AAIProperties.MAXIMUM_DEPTH;

        String getAllRandomStr = AAIConfig.get("aai.rest.getall.depthparam", "");
        if (depthParam != null && getAllRandomStr != null && !getAllRandomStr.isEmpty()
                && getAllRandomStr.equals(depthParam)) {
            return depth;
        }

        if (depthParam == null) {
            if (this.version.compareTo(schemaVersions.getDepthVersion()) >= 0) {
                depth = 0;
            } else {
                depth = AAIProperties.MAXIMUM_DEPTH;
            }
        } else {
            if (!depthParam.isEmpty() && !"all".equals(depthParam)) {
                try {
                    depth = Integer.parseInt(depthParam);
                } catch (Exception e) {
                    throw new AAIException("AAI_4016");
                }

            }
        }
        String maxDepth = obj.getMetadata(ObjectMetadata.MAXIMUM_DEPTH);

        int maximumDepth = AAIProperties.MAXIMUM_DEPTH;

        if (maxDepth != null) {
            try {
                maximumDepth = Integer.parseInt(maxDepth);
            } catch (Exception ex) {
                throw new AAIException("AAI_4018");
            }
        }

        if (depth > maximumDepth) {
            throw new AAIException("AAI_3303");
        }

        return depth;
    }

    /**
     * Checks if is modification method.
     *
     * @param method the method
     * @return true, if is modification method
     */
    private boolean isModificationMethod(HttpMethod method) {
        boolean result = false;

        if (method.equals(HttpMethod.PUT) || method.equals(HttpMethod.PUT_EDGE) || method.equals(HttpMethod.DELETE_EDGE)
                || method.equals(HttpMethod.MERGE_PATCH)) {
            result = true;
        }

        return result;

    }

    /**
     * Given an uri, introspector object and loader object
     * it will check if the obj is top level object if it is,
     * it will return immediately returning the uri passed in
     * If it isn't, it will go through, get the uriTemplate
     * from the introspector object and get the count of "/"s
     * and remove that part of the uri using substring
     * and keep doing that until the current object is top level
     * Also added the max depth just so worst case scenario
     * Then keep adding aai-uri to the list include the aai-uri passed in
     * Convert that list into an array and return it
     * <p>
     *
     * Example:
     *
     * <blockquote>
     * aai-uri ->
     * /cloud-infrastructure/cloud-regions/cloud-region/cloud-owner/cloud-region-id/tenants/tenant/tenant1/vservers/vserver/v1
     *
     * Given the uriTemplate vserver -> /vservers/vserver/{vserver-id}
     * it converts to /vservers/vserver
     *
     * lastIndexOf /vservers/vserver in
     * /cloud-infrastructure/cloud-regions/cloud-region/cloud-owner/cloud-region-id/tenants/tenant/tenant1/vservers/vserver/v1
     * ^
     * |
     * |
     * lastIndexOf
     * Use substring to get the string from 0 to that lastIndexOf
     * aai-uri -> /cloud-infrastructure/cloud-regions/cloud-region/cloud-owner/cloud-region-id/tenants/tenant/tenant1
     *
     * From this new aai-uri, generate a introspector from the URITOObject class
     * and keep doing this until you
     *
     * </blockquote>
     *
     * @param aaiUri - aai-uri of the vertex representating the unique id of a given vertex
     * @param obj - introspector object of the given starting vertex
     * @param loader - Type of loader which will always be MoxyLoader to support model driven
     * @return an array of strings which can be used to get the vertexes of parent and grand parents from a given vertex
     * @throws UnsupportedEncodingException
     * @throws AAIException
     */
    String[] convertIntrospectorToUriList(String aaiUri, Introspector obj, Loader loader)
            throws UnsupportedEncodingException, AAIException {

        List<String> uriList = new ArrayList<>();
        String template = StringUtils.EMPTY;
        String truncatedUri = aaiUri;
        int depth = AAIProperties.MAXIMUM_DEPTH;
        uriList.add(truncatedUri);

        while (depth >= 0 && !obj.isTopLevel()) {
            template = obj.getMetadata(ObjectMetadata.URI_TEMPLATE);

            if (template == null) {
                LOGGER.warn("Unable to find the uriTemplate for the object {}", obj.getDbName());
                return null;
            }

            int templateCount = StringUtils.countMatches(template, "/");
            int truncatedUriCount = StringUtils.countMatches(truncatedUri, "/");

            if (templateCount > truncatedUriCount) {
                LOGGER.warn("Template uri {} contains more slashes than truncatedUri {}", template, truncatedUri);
                return null;
            }

            int cutIndex = StringUtils.ordinalIndexOf(truncatedUri, "/", truncatedUriCount - templateCount + 1);
            truncatedUri = StringUtils.substring(truncatedUri, 0, cutIndex);
            uriList.add(truncatedUri);
            obj = new URIToObject(loader, UriBuilder.fromPath(truncatedUri).build()).getEntity();
            depth--;
        }

        return uriList.toArray(new String[uriList.size()]);
    }

    /**
     *
     * @param serializer
     * @param queryEngine
     * @param v
     * @param obj
     * @param loader
     * @return
     * @throws IllegalAccessException
     * @throws IllegalArgumentException
     * @throws InvocationTargetException
     * @throws SecurityException
     * @throws InstantiationException
     * @throws NoSuchMethodException
     * @throws UnsupportedEncodingException
     * @throws AAIException
     * @throws URISyntaxException
     */
    private HashMap<String, Introspector> getRelatedObjects(DBSerializer serializer, QueryEngine queryEngine, Vertex v,
            Introspector obj, Loader loader) throws IllegalAccessException, IllegalArgumentException,
            InvocationTargetException, SecurityException, InstantiationException, NoSuchMethodException,
            UnsupportedEncodingException, AAIException, URISyntaxException {

        HashMap<String, Introspector> relatedVertices = new HashMap<>();
        VertexProperty aaiUriProperty = v.property(AAIProperties.AAI_URI);

        if (!aaiUriProperty.isPresent()) {
            if (LOGGER.isDebugEnabled()) {
                LOGGER.debug("For the given vertex {}, it seems aai-uri is not present so not getting related objects",
                        v.id().toString());
            } else {
                LOGGER.info(
                        "It seems aai-uri is not present in vertex, so not getting related objects, for more info enable debug log");
            }
            return relatedVertices;
        }

        String aaiUri = aaiUriProperty.value().toString();

        if (!obj.isTopLevel()) {
            String[] uriList = convertIntrospectorToUriList(aaiUri, obj, loader);
            List<Vertex> vertexChain = null;
            // If the uriList is null then there is something wrong with converting the uri
            // into a list of aai-uris so falling back to the old mechanism for finding parents
            if (uriList == null) {
                LOGGER.info(
                        "Falling back to the old mechanism due to unable to convert aai-uri to list of uris but this is not optimal");
                vertexChain = queryEngine.findParents(v);
            } else {
                vertexChain = queryEngine.findParents(uriList);
            }
            for (Vertex vertex : vertexChain) {
                try {
                    final Introspector vertexObj = serializer.getVertexProperties(vertex);
                    relatedVertices.put(vertexObj.getObjectId(), vertexObj);
                } catch (AAIUnknownObjectException e) {
                    LOGGER.warn("Unable to get vertex properties, partial list of related vertices returned");
                }
            }
        } else {
            try {
                final Introspector vertexObj = serializer.getVertexProperties(v);
                relatedVertices.put(vertexObj.getObjectId(), vertexObj);
            } catch (AAIUnknownObjectException e) {
                LOGGER.warn("Unable to get vertex properties, partial list of related vertices returned");
            }
        }

        return relatedVertices;
    }

    private Map<Vertex, Introspector> buildIntrospectorObjects(DBSerializer serializer, Iterable<Vertex> vertices) {
        Map<Vertex, Introspector> deleteObjectMap = new HashMap<>();
        for (Vertex vertex : vertices) {
            try {
                // deleteObjectMap.computeIfAbsent(vertex, s ->
                // serializer.getLatestVersionView(vertex));
                Introspector deleteObj = serializer.getLatestVersionView(vertex);
                deleteObjectMap.put(vertex, deleteObj);
            } catch (UnsupportedEncodingException | AAIException e) {
                LOGGER.warn("Unable to get Introspctor Objects, Just continue");
                continue;
            }

        }

        return deleteObjectMap;

    }

    private Map<String, URI> buildURIMap(DBSerializer serializer, Map<Vertex, Introspector> introSpector) {
        Map<String, URI> uriMap = new HashMap<>();
        for (Map.Entry<Vertex, Introspector> entry : introSpector.entrySet()) {
            URI uri;
            try {
                uri = serializer.getURIForVertex(entry.getKey());
                if (null != entry.getValue()) {
                    uriMap.put(entry.getValue().getObjectId(), uri);
                }
            } catch (UnsupportedEncodingException e) {
                LOGGER.warn("Unable to get URIs, Just continue");
                continue;
            }

        }

        return uriMap;

    }

    private Map<String, HashMap<String, Introspector>> buildRelatedObjects(DBSerializer serializer,
            QueryEngine queryEngine, Map<Vertex, Introspector> introSpector) {

        Map<String, HashMap<String, Introspector>> relatedObjectsMap = new HashMap<>();
        for (Map.Entry<Vertex, Introspector> entry : introSpector.entrySet()) {
            try {
                HashMap<String, Introspector> relatedObjects =
                        this.getRelatedObjects(serializer, queryEngine, entry.getKey(), entry.getValue(), this.loader);
                if (null != entry.getValue()) {
                    relatedObjectsMap.put(entry.getValue().getObjectId(), relatedObjects);
                }
            } catch (IllegalAccessException | IllegalArgumentException | InvocationTargetException | SecurityException
                    | InstantiationException | NoSuchMethodException | UnsupportedEncodingException | AAIException
                    | URISyntaxException e) {
                LOGGER.warn("Unable to get realted Objects, Just continue");
                continue;
            }

        }

        return relatedObjectsMap;

    }

    private void buildNotificationEvent(String sourceOfTruth, Status status, String transactionId,
            UEBNotification notification, Map<Vertex, Introspector> deleteObjects, Map<String, URI> uriMap,
            Map<String, HashMap<String, Introspector>> deleteRelatedObjects, String basePath) {
        for (Map.Entry<Vertex, Introspector> entry : deleteObjects.entrySet()) {
            try {
                String vertexObjectId = "";

                if (null != entry.getValue()) {
                    vertexObjectId = entry.getValue().getObjectId();

                    if (uriMap.containsKey(vertexObjectId) && deleteRelatedObjects.containsKey(vertexObjectId)) {
                        notification.createNotificationEvent(transactionId, sourceOfTruth, status,
                                uriMap.get(vertexObjectId), entry.getValue(), deleteRelatedObjects.get(vertexObjectId),
                                basePath);
                    }
                }
            } catch (UnsupportedEncodingException | AAIException e) {

                LOGGER.warn("Error in sending notification");
            }
        }
    }

    public void setPaginationParameters(String resultIndex, String resultSize) {
        if (resultIndex != null && resultIndex != "-1" && resultSize != null && resultSize != "-1") {
            this.setPaginationIndex(Integer.parseInt(resultIndex));
            this.setPaginationBucket(Integer.parseInt(resultSize));
        }
    }

    public List<Object> getPaginatedVertexList(List<Object> vertexList) throws AAIException {
        List<Object> vertices;
        if (this.isPaginated()) {
            this.setTotalsForPaging(vertexList.size(), this.getPaginationBucket());
            int startIndex = (this.getPaginationIndex() - 1) * this.getPaginationBucket();
            int endIndex = Math.min((this.getPaginationBucket() * this.getPaginationIndex()), vertexList.size());
            if (startIndex > endIndex) {
                throw new AAIException("AAI_6150",
                        " ResultIndex is not appropriate for the result set, Needs to be <= " + endIndex);
            }
            vertices = vertexList.subList(startIndex, endIndex);
        } else {
            vertices = vertexList;
        }
        return vertices;
    }
}