aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSeshu Kumar M <seshu.kumar.m@huawei.com>2020-02-27 08:52:03 +0000
committerGerrit Code Review <gerrit@onap.org>2020-02-27 08:52:03 +0000
commit35d6097d025ead022ccf1e44a5fb69827ae316dd (patch)
treeadb9d2187e881cb095b7d5acfd79b1ba03694ec6
parentc9054893801bb3b2ed151a0304dd3d99a8f9160b (diff)
parentd6dab691b04bc5f914f4a0e4cc206c53b48e4767 (diff)
Merge "AAI object addition for ESR"
-rw-r--r--common/src/main/java/org/onap/so/client/aai/AAIObjectType.java5
1 files changed, 5 insertions, 0 deletions
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;