From b2c0bdb5963a7826ad25513accf7ae0d2d2a97c6 Mon Sep 17 00:00:00 2001 From: "NTNET\\renealr" Date: Mon, 16 Oct 2017 11:35:50 -0400 Subject: added more fixes to the failed sonar issues ParseException was introduced to handle the generic in SynchronizerConfiguration class Issue-ID: AAI-429 Change-Id: I3d52729de7b299fb254c6bc05fcf87b8a6bc314b Signed-off-by: NTNET\renealr --- .../sparky/synchronizer/config/SynchronizerConfiguration.java | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'src/main') diff --git a/src/main/java/org/onap/aai/sparky/synchronizer/config/SynchronizerConfiguration.java b/src/main/java/org/onap/aai/sparky/synchronizer/config/SynchronizerConfiguration.java index 3e4afff..a556dc7 100644 --- a/src/main/java/org/onap/aai/sparky/synchronizer/config/SynchronizerConfiguration.java +++ b/src/main/java/org/onap/aai/sparky/synchronizer/config/SynchronizerConfiguration.java @@ -24,6 +24,7 @@ package org.onap.aai.sparky.synchronizer.config; import java.text.DateFormat; import java.text.SimpleDateFormat; +import java.text.ParseException; import java.util.Arrays; import java.util.Calendar; import java.util.Date; @@ -70,12 +71,12 @@ public class SynchronizerConfiguration { /** * Instantiates a new synchronizer configuration. */ - public SynchronizerConfiguration() throws NumberFormatException,PatternSyntaxException,Exception { + public SynchronizerConfiguration() throws NumberFormatException,PatternSyntaxException,ParseException { Properties props = ConfigHelper.loadConfigFromExplicitPath(CONFIG_FILE); initialize(props); } - public SynchronizerConfiguration(Properties props) throws NumberFormatException, PatternSyntaxException, Exception { + public SynchronizerConfiguration(Properties props) throws NumberFormatException, PatternSyntaxException, ParseException { initialize(props); } /** @@ -83,7 +84,7 @@ public class SynchronizerConfiguration { * * @throws Exception the exception */ - protected void initialize(Properties props) throws NumberFormatException, PatternSyntaxException, Exception { + protected void initialize(Properties props) throws NumberFormatException, PatternSyntaxException, ParseException { // parse config for startup sync try { @@ -145,7 +146,7 @@ public class SynchronizerConfiguration { } else { LOG.info(AaiUiMsgs.SYNC_START_TIME); } - } catch (Exception exc) { + } catch (ParseException exc) { this.setConfigOkForPeriodicSync(false); String message = "Invalid configuration for synchronizer parameter:" + " 'synchronizer.syncTask.startTimestamp'"; -- cgit 1.2.3-korg