Fix sonar issue in sdc/openecomp-be 03/79703/3
authorParshad Patel <pars.patel@samsung.com>
Tue, 5 Mar 2019 11:32:15 +0000 (20:32 +0900)
committerParshad Patel <pars.patel@samsung.com>
Wed, 6 Mar 2019 07:37:46 +0000 (16:37 +0900)
Fix Cast one of the operands of this multiplication operation to a "long" issue

Issue-ID: SDC-1895
Change-Id: I3e87b13e132dafd90558395089111dcf22b75a6e
Signed-off-by: Parshad Patel <pars.patel@samsung.com>
openecomp-be/api/openecomp-sdc-rest-webapp/onboarding-rest-war/src/main/java/org/openecomp/server/configuration/CookieConfig.java
openecomp-be/backend/openecomp-sdc-security-util/src/main/java/org/openecomp/sdc/securityutil/filters/SampleFilter.java

index 9b03f63..a4cc621 100644 (file)
@@ -5,8 +5,8 @@ import java.util.List;
 public class CookieConfig {
 
     String securityKey = "";
-    long maxSessionTimeOut = 600*1000;
-    long sessionIdleTimeOut = 30*1000;
+    long maxSessionTimeOut = 600L*1000L;
+    long sessionIdleTimeOut = 30L*1000L;
     String cookieName = "AuthenticationCookie";
     String redirectURL = "portal_url";
     List<String> excludedUrls;
index 15cd4c5..bf698c3 100644 (file)
@@ -28,8 +28,8 @@ public class SampleFilter extends SessionValidationFilter {
         private Configuration() {
             //security key should be exactly 16 characters long clear text and then encoded to base64
             this.securityKey = "AGLDdG4D04BKm2IxIWEr8o==";
-            this.maxSessionTimeOut = 24*60*60*1000;
-            this.sessionIdleTimeOut = 60*60*1000;
+            this.maxSessionTimeOut = 24L*60L*60L*1000L;
+            this.sessionIdleTimeOut = 60L*60L*1000L;
             this.redirectURL = "https://www.e-access.att.com/ecomp_portal_ist/ecompportal/process_csp";
             this.excludedUrls = new ArrayList<>(Arrays.asList("/config","/configmgr","/rest","/kibanaProxy","/healthcheck","/upload.*"));