From 08e64b98fc5f2067e596c2c407370612c716f253 Mon Sep 17 00:00:00 2001 From: deepikasatheesh Date: Thu, 28 Apr 2022 03:32:54 +0000 Subject: Fix bugs found in TN Slicing integration involving OOF Issue-ID: SO-3931 Signed-off-by: deepikasatheesh Change-Id: I6fe2f53bb8f2761df40802e95255f617089069b5 --- common/src/main/java/org/onap/so/beans/nsmf/SliceProfileAdapter.java | 1 + 1 file changed, 1 insertion(+) (limited to 'common') diff --git a/common/src/main/java/org/onap/so/beans/nsmf/SliceProfileAdapter.java b/common/src/main/java/org/onap/so/beans/nsmf/SliceProfileAdapter.java index 7cc940ddde..2b315611ad 100644 --- a/common/src/main/java/org/onap/so/beans/nsmf/SliceProfileAdapter.java +++ b/common/src/main/java/org/onap/so/beans/nsmf/SliceProfileAdapter.java @@ -176,6 +176,7 @@ public class SliceProfileAdapter implements Serializable { BeanUtils.copyProperties(this, tnSliceProfile); tnSliceProfile.setSNSSAIList(Arrays.asList(this.sNSSAIList.split("\\|"))); tnSliceProfile.setPLMNIdList(Arrays.asList(this.pLMNIdList.split("\\|"))); + tnSliceProfile.setResourceSharingLevel(ResourceSharingLevel.fromString(this.resourceSharingLevel)); return tnSliceProfile; } } -- cgit 1.2.3-korg