From: hyu2010 Date: Fri, 2 Sep 2022 15:27:07 +0000 (-0400) Subject: Update SDNC CLL action names to align with latest CCVPN SDNC changes X-Git-Tag: 1.11.0~5^2 X-Git-Url: https://gerrit.onap.org/r/gitweb?p=so.git;a=commitdiff_plain;h=2db5ad1db3eaeed01b2d32148bcab1bfa7d9a6c2 Update SDNC CLL action names to align with latest CCVPN SDNC changes This update contains for the fixes for the following JIRAs: SO-3991: Update SDNC CLL action names to align with latest CCVPN SDNC changes Issue-ID: SO-3991 Signed-off-by: hyu2010 Change-Id: I9faf8adf5e3e0c88e49568e3ba800ac415e19282 --- diff --git a/bpmn/so-bpmn-infrastructure-common/src/main/groovy/org/onap/so/bpmn/infrastructure/scripts/ServiceIntentUtils.groovy b/bpmn/so-bpmn-infrastructure-common/src/main/groovy/org/onap/so/bpmn/infrastructure/scripts/ServiceIntentUtils.groovy index c77e6b8a75..9a00db2c38 100644 --- a/bpmn/so-bpmn-infrastructure-common/src/main/groovy/org/onap/so/bpmn/infrastructure/scripts/ServiceIntentUtils.groovy +++ b/bpmn/so-bpmn-infrastructure-common/src/main/groovy/org/onap/so/bpmn/infrastructure/scripts/ServiceIntentUtils.groovy @@ -150,19 +150,19 @@ class ServiceIntentUtils { String reqAction switch (svcAction) { case "create": - reqAction = "CreateCloudLeasedLineInstance" + reqAction = "CreateCloudLeasedLineInstanceByEline" break case "delete": - reqAction = "DeleteCloudLeasedLineInstance" + reqAction = "DeleteCloudLeasedLineInstanceByEline" break case "activate": - reqAction = "ActivateCloudLeasedLineInstance" + reqAction = "ActivateCloudLeasedLineInstanceByEline" break case "deactivate": - reqAction = "DeactivateCloudLeasedLineInstance" + reqAction = "DeactivateCloudLeasedLineInstanceByEline" break case "update": - reqAction = "ModifyCloudLeasedLineInstance" + reqAction = "ModifyCloudLeasedLineInstanceByEline" break default: reqAction = svcAction