summaryrefslogtreecommitdiffstats
path: root/auth/auth-batch/src/main/java/org/onap
diff options
context:
space:
mode:
authorDriptaroop Das <driptaroop.das@in.ibm.com>2019-01-23 13:57:39 +0530
committerDriptaroop Das <driptaroop.das@in.ibm.com>2019-01-23 13:59:35 +0530
commitda239ffab11cd24d60b74a5bbd64e6f28275dfe9 (patch)
treef70bf13deaca529797a0c230029c0aed39daf315 /auth/auth-batch/src/main/java/org/onap
parent8a90bbfd12608f44e10d1a082372ac75392cf38b (diff)
Multiple Sonar Fixes - MiscID.java
Multiple Sonar Fixes - MiscID.java Issue-ID: AAF-728 Change-Id: I1ea8d26afa099a979f982d63bca4ca43977d3ab3 Signed-off-by: Driptaroop Das <driptaroop.das@in.ibm.com>
Diffstat (limited to 'auth/auth-batch/src/main/java/org/onap')
-rw-r--r--auth/auth-batch/src/main/java/org/onap/aaf/auth/batch/helpers/MiscID.java10
1 files changed, 4 insertions, 6 deletions
diff --git a/auth/auth-batch/src/main/java/org/onap/aaf/auth/batch/helpers/MiscID.java b/auth/auth-batch/src/main/java/org/onap/aaf/auth/batch/helpers/MiscID.java
index e30336fb..35f03c7c 100644
--- a/auth/auth-batch/src/main/java/org/onap/aaf/auth/batch/helpers/MiscID.java
+++ b/auth/auth-batch/src/main/java/org/onap/aaf/auth/batch/helpers/MiscID.java
@@ -4,7 +4,7 @@
* ===========================================================================
* Copyright (c) 2018 AT&T Intellectual Property. All rights reserved.
* ===========================================================================
- * Modifications Copyright (C) 2018 IBM.
+ * 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.
@@ -64,9 +64,7 @@ public class MiscID {
* 2) DB "suits.cql"
* 3) Alter existing Tables
* @param row
- * @throws BatchException
- * @throws IllegalAccessException
- * @throws IllegalArgumentException
+ * @throws BatchException
*/
public void set(String[] row ) throws BatchException {
if (row.length<4) {
@@ -140,13 +138,13 @@ public class MiscID {
*/
@Override
public boolean equals(Object obj) {
- if (obj!=null && obj instanceof MiscID) {
+ if (null!=obj && obj instanceof MiscID) {
return id.equals(((MiscID)obj).id);
}
return false;
}
- public StringBuilder insertStmt() throws IllegalArgumentException, IllegalAccessException {
+ public StringBuilder insertStmt() {
StringBuilder sb = new StringBuilder("INSERT INTO authz.miscid (");
sb.append(FIELD_STRING);
sb.append(") VALUES ('");