Sonar Bug Fix- for EntityEventPolicy.java 79/90779/1
authorSudarshan Kumar <sudars19@in.ibm.com>
Tue, 2 Jul 2019 11:35:56 +0000 (17:05 +0530)
committerSudarshan Kumar <sudars19@in.ibm.com>
Tue, 2 Jul 2019 11:36:32 +0000 (17:06 +0530)
Sonar Bug Fix- Null Check for EntityEventPolicy.java

Issue-ID: AAI-2505
Change-Id: I33c51f1ed02e1daf63a7593c882f4719b3b86881
Signed-off-by: Sudarshan Kumar <sudars19@in.ibm.com>
src/main/java/org/onap/aai/datarouter/policy/EntityEventPolicy.java

index 152baf3..ec76c95 100644 (file)
@@ -4,6 +4,7 @@
  * ================================================================================
  * Copyright © 2017-2018 AT&T Intellectual Property. All rights reserved.
  * Copyright © 2017-2018 Amdocs
+ * Modifications Copyright (C) 2019 IBM
  * ================================================================================
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -410,7 +411,8 @@ public class EntityEventPolicy implements Processor {
 
       JSONObject entityJsonObject = getUebEntity(uebPayload);
 
-      JsonNode entityJsonNode = convertToJsonNode(entityJsonObject.toString());
+      JsonNode entityJsonNode = 
+                 convertToJsonNode(entityJsonObject !=null ? entityJsonObject.toString() : "");
       
       String parentEntityType = entityType;