From 2db5ad1db3eaeed01b2d32148bcab1bfa7d9a6c2 Mon Sep 17 00:00:00 2001 From: hyu2010 Date: Fri, 2 Sep 2022 11:27:07 -0400 Subject: [PATCH] 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 --- .../so/bpmn/infrastructure/scripts/ServiceIntentUtils.groovy | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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 -- 2.16.6