diff options
author | seshukm <seshu.kumar.m@huawei.com> | 2019-11-02 13:10:07 +0530 |
---|---|---|
committer | seshukm <seshu.kumar.m@huawei.com> | 2019-11-02 13:10:07 +0530 |
commit | 4dc98acc02e02cd953c22adb4b0e0e16b5d22bb7 (patch) | |
tree | e38f68db9a1c8591e99052aa8fe938e5aae9731f /common | |
parent | 63870034053f41e2915877985d6a379715f3dc48 (diff) |
update the AAI to correct version in e release
Issue-ID: SO-2502
Signed-off-by: seshukm <seshu.kumar.m@huawei.com>
Change-Id: I1a6fb91907d4234c64e60c940838844a575f27d1
Diffstat (limited to 'common')
-rw-r--r-- | common/src/main/java/org/onap/so/client/aai/AAIVersion.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/src/main/java/org/onap/so/client/aai/AAIVersion.java b/common/src/main/java/org/onap/so/client/aai/AAIVersion.java index 3a59b2b337..570fe4b46c 100644 --- a/common/src/main/java/org/onap/so/client/aai/AAIVersion.java +++ b/common/src/main/java/org/onap/so/client/aai/AAIVersion.java @@ -23,7 +23,7 @@ package org.onap.so.client.aai; import org.onap.so.client.graphinventory.GraphInventoryVersion; public enum AAIVersion implements GraphInventoryVersion { - V13("v13"), V14("v14"), V15("v15"), V16("v16"), V17("v17"); + V13("v13"), V14("v14"), V15("v15"), V16("v16"); public static final AAIVersion LATEST = AAIVersion.values()[AAIVersion.values().length - 1]; private final String value; |