From 74a3c19549a12db2e196a6141f6fc2dcda1c5826 Mon Sep 17 00:00:00 2001 From: Piotr Borelowski Date: Wed, 15 Jan 2020 17:58:27 +0100 Subject: Added the communication with AAI Ve-Vnfm (SOL002) Adapter project Issue-ID: SO-2574 Signed-off-by: Piotr Borelowski Change-Id: I32a1a560d2787b966f1634b3679368412af19520 --- common/src/main/java/org/onap/so/client/aai/AAIResourcesClient.java | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'common/src') diff --git a/common/src/main/java/org/onap/so/client/aai/AAIResourcesClient.java b/common/src/main/java/org/onap/so/client/aai/AAIResourcesClient.java index 5b302f663e..a89bea6975 100644 --- a/common/src/main/java/org/onap/so/client/aai/AAIResourcesClient.java +++ b/common/src/main/java/org/onap/so/client/aai/AAIResourcesClient.java @@ -44,6 +44,11 @@ public class AAIResourcesClient extends aaiClient = (AAIClient) super.client; } + public AAIResourcesClient(AAIClient client) { + super(client); + aaiClient = (AAIClient) super.client; + } + @Override public AAIResultWrapper createWrapper(String json) { return new AAIResultWrapper(json); -- cgit 1.2.3-korg