diff options
author | Isaac Manuel Raj <isaac.manuelraj@huawei.com> | 2020-03-04 16:58:19 +0530 |
---|---|---|
committer | Isaac Manuel Raj <isaac.manuelraj@huawei.com> | 2020-03-04 17:21:43 +0530 |
commit | d37c03a670d04327030888aa4e664def16e52a83 (patch) | |
tree | 3cae90f83c88d27e7b802183ec9bf2489ec29806 /common/src | |
parent | 7e0be6c64f18111382803cbd7baf485bbd42e2c8 (diff) |
Added new flow for creating 5G slice service.
Added new flow for creating 5G slice service. fixed format issue.
Issue-ID: SO-2368
Signed-off-by: Isaac Manuel Raj <isaac.manuelraj@huawei.com>
Change-Id: Ieb342a58d2079fa4cbb162e6f2dfc0b7400c8d01
Diffstat (limited to 'common/src')
-rw-r--r-- | common/src/main/java/org/onap/so/client/aai/AAIObjectType.java | 2 |
1 files changed, 2 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 b96df4ff9e..7de60181a6 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 @@ -164,6 +164,8 @@ public class AAIObjectType implements GraphInventoryObjectType, Serializable { new AAIObjectType(AAIObjectType.SERVICE_INSTANCE.uriTemplate(), "/slice-profiles", "sliceProfiles"); public static final AAIObjectType COMMUNICATION_PROFILE_ALL = new AAIObjectType( AAIObjectType.SERVICE_INSTANCE.uriTemplate(), "/communication-service-profiles", "communicationProfiles"); + public static final AAIObjectType QUERY_ALLOTTED_RESOURCE = + new AAIObjectType(AAIObjectType.SERVICE_INSTANCE.uriTemplate(), "?depth=2", "service-Instance"); private final String uriTemplate; private final String parentUri; |