From: Lukasz Rajewski Date: Mon, 3 Oct 2022 19:54:24 +0000 (+0000) Subject: Merge "Update SDNC CLL action names to align with latest CCVPN SDNC changes" X-Git-Tag: 1.11.0~5 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=75b2746b7769cd7f6036a2e733008c295741d953;hp=e4ae66db0d0e1bcfd19ef875491a236519be515d;p=so.git Merge "Update SDNC CLL action names to align with latest CCVPN SDNC changes" --- 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