reduced code smells in some components 27/108027/1
authorIndrijeet kumar <indriku1@in.ibm.com>
Thu, 21 May 2020 05:53:08 +0000 (11:23 +0530)
committerIndrijeet kumar <indriku1@in.ibm.com>
Thu, 21 May 2020 05:53:14 +0000 (11:23 +0530)
reduced code smells in some components

Issue-ID: PORTAL-813
Change-Id: I9a003165d260fd332e2e5199525412aeeb9fff05
Signed-off-by: Indrijeet Kumar <indriku1@in.ibm.com>
ecomp-sdk/epsdk-fw/src/main/java/org/onap/portalsdk/core/onboarding/util/PortalApiConstants.java
ecomp-sdk/epsdk-logger/src/main/java/org/onap/portalsdk/core/logging/format/ErrorCodesEnum.java
ecomp-sdk/epsdk-logger/src/main/java/org/onap/portalsdk/core/logging/logic/EELFLoggerDelegate.java
ecomp-sdk/epsdk-logger/src/main/java/org/onap/portalsdk/core/logging/logic/LoggerProperties.java
ecomp-sdk/epsdk-music/src/main/java/org/onap/portalapp/music/conf/MusicSession.java
ecomp-sdk/epsdk-music/src/main/java/org/onap/portalapp/music/conf/MusicSessionRepository.java
ecomp-sdk/epsdk-workflow/src/main/java/org/onap/portalsdk/workflow/models/Workflow.java

index 1b86af2..764f725 100644 (file)
@@ -68,7 +68,7 @@ public interface PortalApiConstants {
     public static final String UEB_APP_INBOUND_MAILBOX_NAME = "ueb_app_mailbox_name";
     public static final String UEB_APP_CONSUMER_GROUP_NAME = "ueb_app_consumer_group_name";
     
-    // UebManager generates a consumer group name for special token {UUID} 
+    /* UebManager generates a consumer group name for special token {UUID} */
     public static final String UEB_APP_CONSUMER_GROUP_NAME_GENERATOR = "{UUID}";
     public static final String UEB_APP_KEY = "ueb_app_key";
     public static final String UEB_APP_SECRET = "ueb_app_secret";
index 6f473ef..c05c2dc 100644 (file)
@@ -38,7 +38,6 @@
 package org.onap.portalsdk.core.logging.format;
 
 import com.att.eelf.i18n.EELFResolvableErrorEnum;
-//import com.att.eelf.i18n.EELFResourceManager;
 
 public enum ErrorCodesEnum implements EELFResolvableErrorEnum {
        BERESTAPIAUTHENTICATIONERROR, BEHTTPCONNECTIONERROR_ONE_ARGUMENT, BEUEBAUTHENTICATIONERROR_ONE_ARGUMENT,
index e59a0cc..901c673 100644 (file)
@@ -65,17 +65,12 @@ import com.att.eelf.configuration.SLF4jWrapper;
 
 public class EELFLoggerDelegate extends SLF4jWrapper implements EELFLogger {
 
-
-       //public static final EELFLogger errorLogger = EELFManager.getInstance().getErrorLogger();
        public static final EELFLogger errorLogger = EELFManager.getInstance().getLogger("EELFError");
        public static final EELFLogger metricsLogger = EELFManager.getInstance().getLogger("EELFMetrics");
        public static final EELFLogger auditLogger = EELFManager.getInstance().getLogger("EELFAudit");
        public static final EELFLogger applicationLogger = EELFManager.getInstance().getApplicationLogger();
-       //public static final EELFLogger auditLogger = EELFManager.getInstance().getAuditLogger();
-       //public static final EELFLogger metricsLogger = EELFManager.getInstance().getMetricsLogger();
        public static final EELFLogger debugLogger = EELFManager.getInstance().getDebugLogger();
-       // DateTime Format according to the ECOMP Application Logging Guidelines.
-               private static final SimpleDateFormat ecompLogDateFormat = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss.SSSXXX");
+       private static final SimpleDateFormat ecompLogDateFormat = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss.SSSXXX");
                
 
        private String className;
index e5af757..abd98b1 100644 (file)
@@ -78,8 +78,6 @@ public class LoggerProperties {
        private static String propertyFileName = "logger.properties";
 
        private static final Object lockObject = new Object();
-       
-//     private static final EELFLoggerDelegate logger = EELFLoggerDelegate.getLogger(LoggerProperties.class);
 
        /**
         * Gets the property value for the specified key. If a value is found, leading
@@ -95,11 +93,9 @@ public class LoggerProperties {
                        synchronized (lockObject) {
                                try {
                                        if (!initialize()) {
-//                                             logger.error(EELFLoggerDelegate.errorLogger, "Failed to read property file " + propertyFileName);
                                                return null;
                                        }
                                } catch (IOException e) {
-//                                     logger.error(EELFLoggerDelegate.errorLogger, "Failed to read property file " + propertyFileName ,e);
                                        return null;
                                }
                        }
index ca60d39..ee585a7 100644 (file)
@@ -38,7 +38,7 @@
 /*
  * Copyright 2014-2017 the original author or authors.
  *
- * Licensed under the Apache License, Version 2.0 (the "License");
+ * 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
  *
@@ -338,7 +338,6 @@ public final class MusicSession implements Session, Serializable  {
         * @param creationTime the time that this {@link Session} was created.
         */
        public void setCreationTime(Instant creationTime) {
-               //MusicService musicService = new MusicService();
                this.creationTime = creationTime;
                try{
                        MusicService.setAttribute(MusicProperties.CREATION_TIME, creationTime, this.id);
index f2f8fee..5475064 100644 (file)
@@ -100,7 +100,6 @@ public class MusicSessionRepository  implements SessionRepository<MusicSession>
                        this.sessionHandler.remove(session.getOriginalId());
                        session.setOriginalId(session.getId());
                }
-               // this.sessionHandler.put(session.getId(), new MusicSession(session));
                this.sessionHandler.put(session.getId(), new MusicSession(session));
        }
 
@@ -114,7 +113,6 @@ public class MusicSessionRepository  implements SessionRepository<MusicSession>
                        deleteById(saved.getId());
                        return null;
                }
-               //return sessionHandler.session(saved);
                return new MusicSession(saved);
        }
 
index 8152117..aa9ac4f 100644 (file)
@@ -7,7 +7,7 @@
  * ===================================================================
  *
  * Unless otherwise specified, all software contained herein is licensed
- * under the Apache License, Version 2.0 (the "License");
+ * under the Apache License, Version 2.0 (the "License")
  * you may not use this software except in compliance with the License.
  * You may obtain a copy of the License at
  *