From 01f3ecda24e893d5799c382f1daaccf439eb745b Mon Sep 17 00:00:00 2001 From: "Tait,Trevor(rt0435)" Date: Tue, 18 Sep 2018 13:43:20 -0400 Subject: Remove credentials data Issue-ID: SDNC-458 Service Decomposition and Network Discovery Microservice have sensitive keystore/certificate/password data in their configuration files that needs to be removed. In order for Network Discovery Microservice JUNIT to execute a dummy Enricher REST client client-cert-onap.p12 was added to src/test/resources. This is the ONAP certificate that will be used when the ONAP Enricher is available, then it will be copied to config/auth. Change-Id: I3aac665815757f9a31bbe0b4020f44cd3fe1eb12 Signed-off-by: Tait,Trevor(rt0435) --- .../apps/pomba/servicedecomposition/AAIConfiguration.java | 15 --------------- 1 file changed, 15 deletions(-) (limited to 'pomba/service-decomposition/src') diff --git a/pomba/service-decomposition/src/main/java/org/onap/sdnc/apps/pomba/servicedecomposition/AAIConfiguration.java b/pomba/service-decomposition/src/main/java/org/onap/sdnc/apps/pomba/servicedecomposition/AAIConfiguration.java index ba0b730..41451a1 100644 --- a/pomba/service-decomposition/src/main/java/org/onap/sdnc/apps/pomba/servicedecomposition/AAIConfiguration.java +++ b/pomba/service-decomposition/src/main/java/org/onap/sdnc/apps/pomba/servicedecomposition/AAIConfiguration.java @@ -33,21 +33,6 @@ public class AAIConfiguration { @Value("${aai.httpProtocol}") private String httpProtocol; - @Value("${aai.trustStorePath}") - private String trustStorePath; - - @Value("${aai.keyStorePath}") - private String keyStorePath; - - @Value("${aai.keyStorePassword}") - private String keyStorePassword; - - @Value("${aai.keyManagerFactoryAlgorithm}") - private String keyManagerFactoryAlgorithm; - - @Value("${aai.keyStoreType}") - private String keyStoreType; - @Value("${aai.securityProtocol}") private String securityProtocol; -- cgit 1.2.3-korg