diff options
author | Benjamin, Max (mb388a) <mb388a@us.att.com> | 2019-02-18 12:50:57 -0500 |
---|---|---|
committer | Benjamin, Max (mb388a) <mb388a@us.att.com> | 2019-02-18 12:51:11 -0500 |
commit | ac892330d55c6a33f376f217fa6ec4464e361b02 (patch) | |
tree | 0a520b1a11074a3745420126fffc9823d992d4d0 /common | |
parent | 2029fd97783776ded9d42d88dea2cc919cbed3e8 (diff) |
set version when using constructor
set version when using constructor
Change-Id: Iaa7c74c8189eb4c607f25fe3f1660c08e80b2586
Issue-ID: SO-1529
Signed-off-by: Benjamin, Max (mb388a) <mb388a@us.att.com>
Diffstat (limited to 'common')
-rw-r--r-- | common/src/main/java/org/onap/so/client/aai/AAIClient.java | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/common/src/main/java/org/onap/so/client/aai/AAIClient.java b/common/src/main/java/org/onap/so/client/aai/AAIClient.java index 21bbc51f89..72a381a048 100644 --- a/common/src/main/java/org/onap/so/client/aai/AAIClient.java +++ b/common/src/main/java/org/onap/so/client/aai/AAIClient.java @@ -44,6 +44,7 @@ public class AAIClient extends GraphInventoryClient { protected AAIClient(AAIVersion version) { super(AAIProperties.class); + this.version = version; } @Override protected URI constructPath(GraphInventoryUri uri) { |