reduced code smells 37/105637/1
authorRupinder <rupinsi1@in.ibm.com>
Thu, 9 Apr 2020 08:13:35 +0000 (13:43 +0530)
committerRupinder <rupinsi1@in.ibm.com>
Thu, 9 Apr 2020 08:13:43 +0000 (13:43 +0530)
Improved some code stucture

Issue-ID: PORTAL-865
Change-Id: I9651ed6f592f83daf3c270749938e7ebc7a38619
Signed-off-by: Rupinder<rupinsi1@in.ibm.com>
ecomp-sdk/epsdk-analytics/src/main/java/org/onap/portalsdk/analytics/model/runtime/ReportParamValues.java
ecomp-sdk/epsdk-analytics/src/main/java/org/onap/portalsdk/analytics/model/runtime/ReportParamValuesForPDFExcel.java
ecomp-sdk/epsdk-analytics/src/main/java/org/onap/portalsdk/analytics/scheduler/SendEmail.java
ecomp-sdk/epsdk-analytics/src/main/java/org/onap/portalsdk/analytics/system/AppUtils.java
ecomp-sdk/epsdk-analytics/src/main/java/org/onap/portalsdk/analytics/system/Globals.java
ecomp-sdk/epsdk-analytics/src/main/java/org/onap/portalsdk/analytics/system/RemDbUtils.java

index 2d46326..2cff3e6 100644 (file)
@@ -132,7 +132,8 @@ public class ReportParamValues extends Hashtable {
                long currentTime = System.currentTimeMillis();
                //System.out.println("ReportParamValues setParamValues called " + refresh);
                boolean paramUpdated = false;
-       if(refresh) clearValues();
+       if(refresh)
+           clearValues();
                for (Enumeration enKeys = keys(); enKeys.hasMoreElements();) {
                        String key = (String) enKeys.nextElement();
                        String oldValue = XSSFilter.filterRequestOnlyScript(getParamValue(key));
index 9871868..483e9fe 100644 (file)
@@ -111,7 +111,8 @@ public class ReportParamValuesForPDFExcel extends Hashtable {
                //debugLogger.debug("ReportParamValues for PDF Excel setParamValues called " + refresh);
           long currentTime = System.currentTimeMillis();
                boolean paramUpdated = false;
-       if(refresh) clearValues();
+       if(refresh)
+           clearValues();
               String name = null;
               String value = null; 
               String value1 = "";
@@ -193,7 +194,8 @@ public class ReportParamValuesForPDFExcel extends Hashtable {
                                                }
                                         if(sql!=null && sql.trim().length()>0){
                                                 name = "";
-                                                if(name.length()<=0) name = ff.getFieldName();
+                                                if(name.length()<=0)
+                                                        name = ff.getFieldName();
                                                 value = rr.getParamValue(name);
                                                 //debugLogger.debug("Name "+ name+ " value:" + value);
                                                 String paramValue = ESAPI.encoder().encodeForSQL( SecurityCodecUtil.getCodec(), getParamValueForSQL(name, value));
@@ -280,7 +282,8 @@ public class ReportParamValuesForPDFExcel extends Hashtable {
                                                                                put(ff.getFieldName(), nvl(value1));
                                                                        } else { 
                                                                  
-                                                                 if(ds!=null && ds.getRowCount()>0) put(ff.getFieldName(), nvl(ds.getString(0,1)));
+                                                                 if(ds!=null && ds.getRowCount()>0)
+                                                                         put(ff.getFieldName(), nvl(ds.getString(0,1)));
                                                                  else put(ff.getFieldName(), nvl(value));
                                                                        }
                                                          }
@@ -315,7 +318,8 @@ public class ReportParamValuesForPDFExcel extends Hashtable {
                                                                        //debugLogger.debug("77777777777777 " + value1);
                                                                } else 
                                                                     value1 = nvl(rr.getParamValue(ff.getFieldName()));
-                                                                    if(value1.length()<=0) value1 = nvl(ff.getDefaultValue());
+                                                                    if(value1.length()<=0)
+                                                                                value1 = nvl(ff.getDefaultValue());
                                                                         put(ff.getFieldName(), nvl(value1));
 
                                                 }
@@ -431,7 +435,8 @@ public class ReportParamValuesForPDFExcel extends Hashtable {
        }catch(NumberFormatException ex){
                numInt = 0;
        }
-       if(numInt < 10) return "0"+numInt;
+       if(numInt < 10)
+                       return "0"+numInt;
        else return ""+numInt;
     }    
 
index f698e55..144c6ea 100644 (file)
@@ -39,7 +39,6 @@ package org.onap.portalsdk.analytics.scheduler;
 
 import java.io.File;
 import java.io.FileInputStream;
-import java.io.FileNotFoundException;
 import java.io.FileOutputStream;
 import java.io.IOException;
 import java.io.InputStream;
index 547937f..972cf72 100644 (file)
@@ -165,7 +165,8 @@ public class AppUtils /* implements IAppUtils */{
 
     // This is changed to check for Admin User as admin user also need super user privilege if explicitly specified in properties file.        
        public static boolean isSuperUser(HttpServletRequest request)throws RaptorException {
-               if(Globals.isAdminRoleEquivalenttoSuperRole()) return isAdminUser(request);
+               if(Globals.isAdminRoleEquivalenttoSuperRole())
+                       return isAdminUser(request);
                else return isUserInRole(request, getSuperRoleID());
        } // isSuperUser
 
index 6718e42..6f55037 100644 (file)
@@ -1140,7 +1140,8 @@ return sheetName;
                         StringTokenizer st = new StringTokenizer(vals, "|");
                         if(st.countTokens()>0) {
                                while(st.hasMoreTokens()) {
-                                       if(isMultiValue) value.append("'");
+                                       if(isMultiValue)
+                                                                       value.append("'");
                                        String token = st.nextToken();
                                                                try {
                                                if(token !=null && token.length() > 0)
@@ -1149,7 +1150,8 @@ return sheetName;
                                                                catch (IllegalArgumentException ex1){} 
                                                                catch (Exception ex2){}
                                                                value.append(token);
-                                                               if(isMultiValue) value.append("'"); 
+                                                               if(isMultiValue)
+                                                                       value.append("'"); 
                                                                if(st.hasMoreTokens()) {
                                                                        value.append(",");
                                                                }
@@ -1163,7 +1165,8 @@ return sheetName;
                                        valuesMap.put(fieldNameMap.get(formField), valueStr);
                                        valueStr = "";
                         }
-                        if(isMultiValue) value.append(")");
+                        if(isMultiValue)
+                                                       value.append(")");
                                         
                                         valuesMap.put(fieldNameMap.get(formField), value.toString());
                                         if(ff.getValidationType().equals(FormField.VT_TIMESTAMP_HR) || ff.getValidationType().equals(FormField.VT_TIMESTAMP_MIN) || ff.getValidationType().equals(FormField.VT_TIMESTAMP_SEC)) {
@@ -1209,7 +1212,8 @@ return sheetName;
                         StringTokenizer st = new StringTokenizer(vals, "|");
                         if(st.countTokens()>0) {
                                while(st.hasMoreTokens()) {
-                                       if(isMultiValue) value.append("'");
+                                       if(isMultiValue)
+                                                                       value.append("'");
                                        String token = st.nextToken();
                                                                try {
                                                if(token !=null && token.length() > 0)
@@ -1218,7 +1222,8 @@ return sheetName;
                                                                catch (IllegalArgumentException ex1){} 
                                                                catch (Exception ex2){}
                                                                value.append(token);
-                                                               if(isMultiValue) value.append("'"); 
+                                                               if(isMultiValue)
+                                                                       value.append("'"); 
                                                                if(st.hasMoreTokens()) {
                                                                        value.append(",");
                                                                }
@@ -1231,7 +1236,8 @@ return sheetName;
                                        valuesMap.put(fieldNameMap.get(formField), valueStr);
                                        valueStr = "";
                         }
-                        if(isMultiValue) value.append(")");
+                        if(isMultiValue)
+                                                       value.append(")");
                                         
                                         valuesMap.put(fieldNameMap.get(formField), value.toString());
                                         
@@ -1405,7 +1411,8 @@ return sheetName;
                                                        value.append("(");
                                                }
                                                for(int j = 0 ; j < vals.length; j++) {
-                                                       if(isMultiValue) value.append("'");
+                                                       if(isMultiValue)
+                                                               value.append("'");
                                                        try {
                                                                if(vals[j] !=null && vals[j].length() > 0) {
                                                                        vals[j] = Utils.oracleSafe(vals[j]);
@@ -1420,7 +1427,8 @@ return sheetName;
                                                        }
                
                
-                                                       if(isMultiValue) value.append("'"); 
+                                                       if(isMultiValue)
+                                                               value.append("'"); 
                                                        
                                                        if(j != vals.length -1) {
                                                                value.append(",");
@@ -1542,7 +1550,8 @@ return sheetName;
 
     public static int getMemoryThreshold() {
                        int threshold =  Integer.parseInt(nvls(raptorProperties.getProperty("memory_threshold_percentage"),"0").trim());
-                       if(threshold <= 0) threshold = 0;
+                       if(threshold <= 0)
+                               threshold = 0;
                        return threshold;
     }
     
index 2a9d487..c28f6e6 100644 (file)
@@ -179,8 +179,10 @@ public class RemDbUtils /* implements IDbUtils */{
        public static DataSet executeQuery(Connection con, String sql, int maxRowLimit, String dbKey)
                        throws ReportSQLException {
                try {
-                       if (con==null || con.isClosed())  con = getConnection(dbKey); 
-                       if(con==null) throw new ReportSQLException("Remote Connection not configured for "+ dbKey);
+                       if (con==null || con.isClosed())
+                               con = getConnection(dbKey); 
+                       if(con==null)
+                               throw new ReportSQLException("Remote Connection not configured for "+ dbKey);
                        try(Statement stmt = con.createStatement();
                                ResultSet rs = stmt.executeQuery(sql);){
                                logger.debug(EELFLoggerDelegate.debugLogger, ("[SQL CALL FROM RAPTOR] [SQL] " + sql));