From d6dab691b04bc5f914f4a0e4cc206c53b48e4767 Mon Sep 17 00:00:00 2001 From: jananib Date: Thu, 27 Feb 2020 12:31:22 +0530 Subject: AAI object addition for ESR AAI info for NSSMF adapter Change-Id: I237b67261c55e70d000ebbee8fa28aa4a5b7538a Issue-ID: SO-2544 Signed-off-by: jananib --- common/src/main/java/org/onap/so/client/aai/AAIObjectType.java | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'common') diff --git a/common/src/main/java/org/onap/so/client/aai/AAIObjectType.java b/common/src/main/java/org/onap/so/client/aai/AAIObjectType.java index db541f7f7f..f78ac737ed 100644 --- a/common/src/main/java/org/onap/so/client/aai/AAIObjectType.java +++ b/common/src/main/java/org/onap/so/client/aai/AAIObjectType.java @@ -191,6 +191,11 @@ public class AAIObjectType implements GraphInventoryObjectType, Serializable { public static final AAIObjectType CLOUD_ESR_SYSTEM_INFO_LIST = new AAIObjectType( AAIObjectType.CLOUD_REGION.uriTemplate(), "/esr-system-info-list", "cloud-esr-system-info-list"); public static final AAIObjectType ZONE = new AAIObjectType(AAINamespaceConstants.NETWORK, Zone.class); + public static final AAIObjectType THIRDPARTY_SDNC_LIST = new AAIObjectType(AAINamespaceConstants.EXTERNAL_SYSTEM, + "/esr-thirdparty-sdnc-list", "thirdparty-sdnc-list"); + public static final AAIObjectType THIRDPARTY_SDNC_SYSTEM_INFO_LIST = + new AAIObjectType(AAINamespaceConstants.EXTERNAL_SYSTEM + "/esr-thirdparty-sdnc-list", + "/esr-thirdparty-sdnc/{sdnc-id}/esr-system-info-list", "thirdparty-sdnc-system-info-list"); private final String uriTemplate; private final String parentUri; -- cgit 1.2.3-korg