aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJames Forsyth <jf2512@att.com>2019-08-15 13:37:43 +0000
committerGerrit Code Review <gerrit@onap.org>2019-08-15 13:37:43 +0000
commit76796c55198d8b7865c60a05654ef1a7975b0fb9 (patch)
tree615fc1914d6be42d431e23bb43f5074ade685ed1
parent23dc949b6f0f4635c21ae8969ad1c5f0efa46aff (diff)
parent7adb3875213702905e08bb9185e19c617cb00c4e (diff)
Merge "Added sonar fixes"
-rw-r--r--champ-service/src/main/java/org/onap/champ/entity/ChampBulkPayload.java10
-rw-r--r--champ-service/src/main/java/org/onap/champ/service/ChampTransactionCache.java5
-rw-r--r--champ-service/src/main/java/org/onap/champ/util/ChampProperties.java11
3 files changed, 18 insertions, 8 deletions
diff --git a/champ-service/src/main/java/org/onap/champ/entity/ChampBulkPayload.java b/champ-service/src/main/java/org/onap/champ/entity/ChampBulkPayload.java
index 9ee9349..aa09306 100644
--- a/champ-service/src/main/java/org/onap/champ/entity/ChampBulkPayload.java
+++ b/champ-service/src/main/java/org/onap/champ/entity/ChampBulkPayload.java
@@ -5,6 +5,8 @@
* 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.
* You may obtain a copy of the License at
@@ -30,10 +32,10 @@ import java.util.List;
public class ChampBulkPayload {
- public static String ADD_OP = "add";
- public static String UPDATE_OP = "modify";
- public static String DELETE_OP = "delete";
- public static String PATCH_OP = "patch";
+ public static final String ADD_OP = "add";
+ public static final String UPDATE_OP = "modify";
+ public static final String DELETE_OP = "delete";
+ public static final String PATCH_OP = "patch";
private List<ChampBulkOp> edgeDeleteOps = new ArrayList<ChampBulkOp>();
private List<ChampBulkOp> vertexDeleteOps = new ArrayList<ChampBulkOp>();
diff --git a/champ-service/src/main/java/org/onap/champ/service/ChampTransactionCache.java b/champ-service/src/main/java/org/onap/champ/service/ChampTransactionCache.java
index 9dc7233..e9a4e00 100644
--- a/champ-service/src/main/java/org/onap/champ/service/ChampTransactionCache.java
+++ b/champ-service/src/main/java/org/onap/champ/service/ChampTransactionCache.java
@@ -5,6 +5,8 @@
* 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.
* You may obtain a copy of the License at
@@ -60,8 +62,7 @@ public class ChampTransactionCache {
graphImpl.rollbackTransaction((ChampTransaction) notification.getValue());
logger.info(ChampMsgs.CHAMP_TX_CACHE, "Transaction rolledback successfully :" + notification.getKey());
} catch (ChampTransactionException e) {
- // TODO Auto-generated catch block
- e.printStackTrace();
+ logger.error(ChampMsgs.CHAMP_DATA_SERVICE_ERROR, e, "Transaction rolledback failed :");
}
}
}
diff --git a/champ-service/src/main/java/org/onap/champ/util/ChampProperties.java b/champ-service/src/main/java/org/onap/champ/util/ChampProperties.java
index 74b761e..1aeb5cf 100644
--- a/champ-service/src/main/java/org/onap/champ/util/ChampProperties.java
+++ b/champ-service/src/main/java/org/onap/champ/util/ChampProperties.java
@@ -5,6 +5,8 @@
* 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.
* You may obtain a copy of the License at
@@ -25,8 +27,13 @@ import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.util.Properties;
+import org.onap.aai.cl.api.Logger;
+import org.onap.aai.cl.eelf.LoggerFactory;
+import org.onap.champ.service.logging.ChampMsgs;
public class ChampProperties {
+
+ private static Logger logger = LoggerFactory.getInstance().getLogger(ChampProperties.class.getName());
private static Properties properties;
@@ -37,7 +44,7 @@ public class ChampProperties {
) {
properties.load(fileInputStream);
} catch (IOException e) {
- e.printStackTrace();
+ logger.error(ChampMsgs.CHAMP_DATA_SERVICE_ERROR, "Error while loading properties ", e.getMessage());
Runtime.getRuntime().halt(1);
}
}
@@ -57,7 +64,7 @@ public class ChampProperties {
) {
properties.store(fileOut, "Added property: " + key);
} catch (Exception e) {
- e.printStackTrace();
+ logger.error(ChampMsgs.CHAMP_DATA_SERVICE_ERROR, "Error while setting properties ", e.getMessage());
}
}