summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordinesha <dineshgs@in.ibm.com>2019-08-01 14:47:59 +0530
committerManoop Talasila <talasila@research.att.com>2019-08-05 18:40:15 +0000
commitb1a656eff5b44ab8ce53e57a0fcb1c04642622ba (patch)
tree1982c193eb8d793fa50ecf1576583625f44d3376
parent71cf9cbe286d92e38b517e3a5829ba833859c93f (diff)
Sonar Fix- ReportFormFields.java
Fixed Sonar Issues accross the file Issue-ID: PORTAL-686 Change-Id: I427688b57166ad06ad908b7ba093d8f2d9c811f9 Signed-off-by: dinesha <dineshgs@in.ibm.com> (cherry picked from commit b5abb9ffb393d0ce78ce5799576935a8f5820022)
-rw-r--r--ecomp-sdk/epsdk-analytics/src/main/java/org/onap/portalsdk/analytics/model/runtime/ReportFormFields.java14
1 files changed, 7 insertions, 7 deletions
diff --git a/ecomp-sdk/epsdk-analytics/src/main/java/org/onap/portalsdk/analytics/model/runtime/ReportFormFields.java b/ecomp-sdk/epsdk-analytics/src/main/java/org/onap/portalsdk/analytics/model/runtime/ReportFormFields.java
index 02a3de4e..7bacd229 100644
--- a/ecomp-sdk/epsdk-analytics/src/main/java/org/onap/portalsdk/analytics/model/runtime/ReportFormFields.java
+++ b/ecomp-sdk/epsdk-analytics/src/main/java/org/onap/portalsdk/analytics/model/runtime/ReportFormFields.java
@@ -90,7 +90,7 @@ public class ReportFormFields extends Vector {
//Calendar rangeEndDate = fft.getRangeEndDate().toGregorianCalendar();
String rangeStartDateSQL = fft.getRangeStartDateSQL();
String rangeEndDateSQL = fft.getRangeEndDateSQL();
- String user_id = AppUtils.getUserID(request);
+ String userId = AppUtils.getUserID(request);
String multiSelectListSize = fft.getMultiSelectListSize();
//s_logger.debug("ranges are : " + fft.getRangeStartDate() + fft.getRangeEndDate());
@@ -122,9 +122,9 @@ public class ReportFormFields extends Vector {
}
// }
}
- fieldSQL = Utils.replaceInString(fieldSQL, "[USERID]", user_id);
- fieldSQL = Utils.replaceInString(fieldSQL, "[USER_ID]", user_id);
- fieldSQL = Utils.replaceInString(fieldSQL, "[LOGGED_USERID]", user_id);
+ fieldSQL = Utils.replaceInString(fieldSQL, "[USERID]", userId);
+ fieldSQL = Utils.replaceInString(fieldSQL, "[USER_ID]", userId);
+ fieldSQL = Utils.replaceInString(fieldSQL, "[LOGGED_USERID]", userId);
}
@@ -152,9 +152,9 @@ public class ReportFormFields extends Vector {
fieldDefaultSQL = Utils.replaceInString(fieldDefaultSQL, "[" + sessionParameters[i].toUpperCase()+"]", (String)session.getAttribute(sessionParameters[i]) );
}
- fieldDefaultSQL = Utils.replaceInString(fieldDefaultSQL, "[USERID]", user_id);
- fieldDefaultSQL = Utils.replaceInString(fieldDefaultSQL, "[USER_ID]", user_id);
- fieldDefaultSQL = Utils.replaceInString(fieldDefaultSQL, "[LOGGED_USERID]", user_id);
+ fieldDefaultSQL = Utils.replaceInString(fieldDefaultSQL, "[USERID]", userId);
+ fieldDefaultSQL = Utils.replaceInString(fieldDefaultSQL, "[USER_ID]", userId);
+ fieldDefaultSQL = Utils.replaceInString(fieldDefaultSQL, "[LOGGED_USERID]", userId);
}
//s_logger.debug("fieldSQL After" + fieldSQL);
if(rangeStartDateSQL!=null) {