From 2abfecad9aeb88ba95d62d718376535fb6e00325 Mon Sep 17 00:00:00 2001 From: grabinsk Date: Fri, 5 Apr 2019 15:13:18 +0200 Subject: Add pnfUrl field Due to changes in the aai client configuration json old parameters aaiHost, aaiProtocol, aaiPort, aaiBasePath, aaiPnfPath will be replaced by pnfUrl Change-Id: Ifd8841f8a80d743a95e3b0ea7d868eda923febca Issue-ID: DCAEGEN2-1398 Signed-off-by: grabinsk --- .../test/java/org/onap/dcaegen2/services/prh/TestAppConfiguration.java | 1 + 1 file changed, 1 insertion(+) (limited to 'prh-app-server/src/test/java') diff --git a/prh-app-server/src/test/java/org/onap/dcaegen2/services/prh/TestAppConfiguration.java b/prh-app-server/src/test/java/org/onap/dcaegen2/services/prh/TestAppConfiguration.java index 754bdba9..b09d039a 100644 --- a/prh-app-server/src/test/java/org/onap/dcaegen2/services/prh/TestAppConfiguration.java +++ b/prh-app-server/src/test/java/org/onap/dcaegen2/services/prh/TestAppConfiguration.java @@ -66,6 +66,7 @@ public class TestAppConfiguration { public static ImmutableAaiClientConfiguration createDefaultAaiClientConfiguration() { return new ImmutableAaiClientConfiguration.Builder() + .pnfUrl("https://aai.onap.svc.cluster.local:8443/aai/v12/network/pnfs/pnf") .aaiHost("aai.onap.svc.cluster.local") .aaiPort(8443) .aaiProtocol("https") -- cgit 1.2.3-korg