aboutsummaryrefslogtreecommitdiffstats
path: root/common
diff options
context:
space:
mode:
authordeepikasatheesh <deepika.s84@wipro.com>2022-04-28 03:32:54 +0000
committerdeepikasatheesh <deepika.s84@wipro.com>2022-05-26 07:54:33 +0000
commit08e64b98fc5f2067e596c2c407370612c716f253 (patch)
treec8be41645975a81b2f5a00fd402ce8ac4b3daae9 /common
parent131fd74f717f76bc23af1ef935f6e96654f703d6 (diff)
Fix bugs found in TN Slicing integration involving OOF
Issue-ID: SO-3931 Signed-off-by: deepikasatheesh <deepika.s84@wipro.com> Change-Id: I6fe2f53bb8f2761df40802e95255f617089069b5
Diffstat (limited to 'common')
-rw-r--r--common/src/main/java/org/onap/so/beans/nsmf/SliceProfileAdapter.java1
1 files changed, 1 insertions, 0 deletions
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;
}
}