aboutsummaryrefslogtreecommitdiffstats
path: root/policy-endpoints/src/main/java/org/onap/policy/common/endpoints/http/server/HttpServletServerFactory.java
diff options
context:
space:
mode:
Diffstat (limited to 'policy-endpoints/src/main/java/org/onap/policy/common/endpoints/http/server/HttpServletServerFactory.java')
-rw-r--r--policy-endpoints/src/main/java/org/onap/policy/common/endpoints/http/server/HttpServletServerFactory.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/policy-endpoints/src/main/java/org/onap/policy/common/endpoints/http/server/HttpServletServerFactory.java b/policy-endpoints/src/main/java/org/onap/policy/common/endpoints/http/server/HttpServletServerFactory.java
index b5c701ac..b98ed180 100644
--- a/policy-endpoints/src/main/java/org/onap/policy/common/endpoints/http/server/HttpServletServerFactory.java
+++ b/policy-endpoints/src/main/java/org/onap/policy/common/endpoints/http/server/HttpServletServerFactory.java
@@ -230,7 +230,7 @@ class IndexedHttpServletServerFactory implements HttpServletServerFactory {
+ serviceName + PolicyEndPointProperties.PROPERTY_AAF_SUFFIX);
boolean aaf = false;
if (aafString != null && !aafString.isEmpty()) {
- aaf = Boolean.parseBoolean(httpsString);
+ aaf = Boolean.parseBoolean(aafString);
}
HttpServletServer service = build(serviceName, https, hostName, servicePort, contextUriPath, swagger, managed);