From e04402e6c772ff0dd312bc4fe3ef7132924550a3 Mon Sep 17 00:00:00 2001 From: hetengjiao Date: Mon, 30 Nov 2020 18:39:52 +0800 Subject: add nsi name info to an and cn Issue-ID: SO-2963 Signed-off-by: hetengjiao Change-Id: I57cc2554c95a67d19e7e35e192a45ba74d0cdb59 --- .../org/onap/so/bpmn/infrastructure/scripts/DoAllocateNSIandNSSI.groovy | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bpmn/so-bpmn-infrastructure-common/src/main/groovy/org/onap/so/bpmn/infrastructure/scripts/DoAllocateNSIandNSSI.groovy b/bpmn/so-bpmn-infrastructure-common/src/main/groovy/org/onap/so/bpmn/infrastructure/scripts/DoAllocateNSIandNSSI.groovy index 1f3cf6ed52..be691bb313 100644 --- a/bpmn/so-bpmn-infrastructure-common/src/main/groovy/org/onap/so/bpmn/infrastructure/scripts/DoAllocateNSIandNSSI.groovy +++ b/bpmn/so-bpmn-infrastructure-common/src/main/groovy/org/onap/so/bpmn/infrastructure/scripts/DoAllocateNSIandNSSI.groovy @@ -330,6 +330,7 @@ class DoAllocateNSIandNSSI extends AbstractServiceTaskProcessor{ allocateAnNssi.nssiName = sliceTaskInfo.NSSTInfo.name NsiInfo nsiInfo = new NsiInfo() nsiInfo.nsiId = sliceParams.suggestNsiId + nsiInfo.nsiName = sliceParams.suggestNsiName allocateAnNssi.nsiInfo = nsiInfo //endPoint EndPoint endPoint = new EndPoint() @@ -450,6 +451,7 @@ class DoAllocateNSIandNSSI extends AbstractServiceTaskProcessor{ allocateCnNssi.sliceProfile = sliceTaskInfo.sliceProfile.trans2CnProfile() NsiInfo nsiInfo = new NsiInfo() nsiInfo.nsiId = sliceParams.suggestNsiId + nsiInfo.nsiName = sliceParams.suggestNsiName allocateCnNssi.nsiInfo = nsiInfo // endPoint EndPoint endPoint = new EndPoint() -- cgit 1.2.3-korg