summaryrefslogtreecommitdiffstats
path: root/common
diff options
context:
space:
mode:
authorShashikanth VH <shashikanth.vh@huawei.com>2022-06-06 06:43:27 +0000
committerGerrit Code Review <gerrit@onap.org>2022-06-06 06:43:27 +0000
commit366a173f798422b956625aa83d81fc863e0914a5 (patch)
tree30b760b757a0e1fe601e735b13ad666f46812397 /common
parent8d41d7c008d872dcca748657ae6467b06a25df9c (diff)
parent08e64b98fc5f2067e596c2c407370612c716f253 (diff)
Merge "Fix bugs found in TN Slicing integration involving OOF"
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;
}
}