[OOM-CPMv2] Fix sonar issue 86/112786/1
authortkogut <tomasz.kogut@nokia.com>
Thu, 17 Sep 2020 07:10:23 +0000 (09:10 +0200)
committertkogut <tomasz.kogut@nokia.com>
Thu, 17 Sep 2020 07:10:23 +0000 (09:10 +0200)
Remove the declarations of thrown exceptions

Issue-ID: OOM-2526
Signed-off-by: tkogut <tomasz.kogut@nokia.com>
Change-Id: Ic255a31cea9fa21879c234b6f32db8136d26a115

trustStoreMerger/src/main/java/org/onap/oom/certservice/postprocessor/configuration/AppConfigurationProvider.java

index 79e223c..1e9ef8a 100644 (file)
@@ -29,7 +29,6 @@ import java.util.Collections;
 import java.util.List;
 import java.util.Optional;
 import org.onap.oom.certservice.postprocessor.configuration.path.env.EnvReader;
-import org.onap.oom.certservice.postprocessor.configuration.exception.CertificatesPathsValidationException;
 import org.onap.oom.certservice.postprocessor.configuration.exception.ConfigurationException;
 import org.onap.oom.certservice.postprocessor.configuration.model.AppConfiguration;
 import org.onap.oom.certservice.postprocessor.configuration.model.EnvVariable;
@@ -45,9 +44,7 @@ public class AppConfigurationProvider {
         this.pathsSplitter = pathsSplitter;
     }
 
-    public AppConfiguration createConfiguration()
-        throws ConfigurationException, CertificatesPathsValidationException {
-
+    public AppConfiguration createConfiguration() {
         List<String> truststoresPaths = getPaths(TRUSTSTORES_PATHS);
         List<String> truststoresPasswordsPaths = getPaths(TRUSTSTORES_PASSWORDS_PATHS);
         List<String> sourceKeystorePaths = getPaths(KEYSTORE_SOURCE_PATHS);
@@ -62,7 +59,7 @@ public class AppConfigurationProvider {
             destinationKeystorePaths);
     }
 
-    private List<String> getPaths(EnvVariable envVariable) throws ConfigurationException {
+    private List<String> getPaths(EnvVariable envVariable) {
         Optional<String> envValue = envReader.getEnv(envVariable.name());
         isMandatoryEnvPresent(envVariable, envValue);
         return envValue.isPresent() ? pathsSplitter.getValidatedPaths(envVariable, envValue) : Collections.emptyList();
@@ -75,7 +72,7 @@ public class AppConfigurationProvider {
     }
 
     private void ensureSameSize(List<String> firstList, List<String> secondList, String firstListEnvName,
-        String secondListEnvName) throws ConfigurationException {
+                                String secondListEnvName) {
         if (firstList.size() != secondList.size()) {
             throw new ConfigurationException(
                 "Size of " + firstListEnvName