diff options
author | deepikasatheesh <deepika.s84@wipro.com> | 2022-04-28 03:32:54 +0000 |
---|---|---|
committer | deepikasatheesh <deepika.s84@wipro.com> | 2022-05-26 07:54:33 +0000 |
commit | 08e64b98fc5f2067e596c2c407370612c716f253 (patch) | |
tree | c8be41645975a81b2f5a00fd402ce8ac4b3daae9 /common/src/main | |
parent | 131fd74f717f76bc23af1ef935f6e96654f703d6 (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/src/main')
-rw-r--r-- | common/src/main/java/org/onap/so/beans/nsmf/SliceProfileAdapter.java | 1 |
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; } } |