diff options
author | tkogut <tomasz.kogut@nokia.com> | 2020-09-17 09:10:23 +0200 |
---|---|---|
committer | tkogut <tomasz.kogut@nokia.com> | 2020-09-17 09:10:23 +0200 |
commit | 9cf59f7e1a3c55ca1232ce65ee2e9d1481472e33 (patch) | |
tree | 45b3858c3f12eee9c1036017b0a0b6631493f26a /trustStoreMerger | |
parent | dbe9528c1571b97728649b54e00be6ae947c23ef (diff) |
[OOM-CPMv2] Fix sonar issue
Remove the declarations of thrown exceptions
Issue-ID: OOM-2526
Signed-off-by: tkogut <tomasz.kogut@nokia.com>
Change-Id: Ic255a31cea9fa21879c234b6f32db8136d26a115
Diffstat (limited to 'trustStoreMerger')
-rw-r--r-- | trustStoreMerger/src/main/java/org/onap/oom/certservice/postprocessor/configuration/AppConfigurationProvider.java | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/trustStoreMerger/src/main/java/org/onap/oom/certservice/postprocessor/configuration/AppConfigurationProvider.java b/trustStoreMerger/src/main/java/org/onap/oom/certservice/postprocessor/configuration/AppConfigurationProvider.java index 79e223c5..1e9ef8a9 100644 --- a/trustStoreMerger/src/main/java/org/onap/oom/certservice/postprocessor/configuration/AppConfigurationProvider.java +++ b/trustStoreMerger/src/main/java/org/onap/oom/certservice/postprocessor/configuration/AppConfigurationProvider.java @@ -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 |