summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/onap/dcae/restapi
diff options
context:
space:
mode:
authors00370346 <swarup.nayak1@huawei.com>2019-03-19 16:22:00 +0530
committers00370346 <swarup.nayak1@huawei.com>2019-03-19 19:43:26 +0530
commit82c26b5b8e7e92dfd9108684290e3a596b800e62 (patch)
tree3c7c308df7ee1b1e6637b1b9730ad662abf8c17c /src/main/java/org/onap/dcae/restapi
parentbe11dee889f5a740d584458b62804e5fd4296e53 (diff)
Issue-ID: DCAEGEN2-1055 RestConfCollector UnitTest
Change-Id: I513ddb61d710f12ab3ccc6fca2329f3f74b4e39c Signed-off-by: s00370346 <swarup.nayak1@huawei.com>
Diffstat (limited to 'src/main/java/org/onap/dcae/restapi')
-rw-r--r--src/main/java/org/onap/dcae/restapi/ServletConfig.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/java/org/onap/dcae/restapi/ServletConfig.java b/src/main/java/org/onap/dcae/restapi/ServletConfig.java
index 6a6a761..3bb174e 100644
--- a/src/main/java/org/onap/dcae/restapi/ServletConfig.java
+++ b/src/main/java/org/onap/dcae/restapi/ServletConfig.java
@@ -62,10 +62,10 @@ public class ServletConfig implements WebServerFactoryCustomizer<ConfigurableSer
private SSLContextCreator simpleHttpsContextBuilder() {
log.info("Enabling SSL");
- final Path keyStore = toAbsolutePath(properties.rcc_keystoreFileLocation());
+ final Path keyStore = toAbsolutePath(properties.rccKeystoreFileLocation());
log.info("Using keyStore path: " + keyStore);
- final Path keyStorePasswordLocation = toAbsolutePath(properties.rcc_keystorePasswordFileLocation());
+ final Path keyStorePasswordLocation = toAbsolutePath(properties.rccKeystorePasswordFileLocation());
final String keyStorePassword = getKeyStorePassword(keyStorePasswordLocation);
log.info("Using keyStore password from: " + keyStorePasswordLocation);