diff options
author | Lukasz Rajewski <lukasz.rajewski@t-mobile.pl> | 2022-10-03 19:54:24 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2022-10-03 19:54:24 +0000 |
commit | 75b2746b7769cd7f6036a2e733008c295741d953 (patch) | |
tree | dec6268067a85aa2ff2e2ba5fa9dc5c4ad1e4f58 | |
parent | e4ae66db0d0e1bcfd19ef875491a236519be515d (diff) | |
parent | 2db5ad1db3eaeed01b2d32148bcab1bfa7d9a6c2 (diff) |
Merge "Update SDNC CLL action names to align with latest CCVPN SDNC changes"
-rw-r--r-- | bpmn/so-bpmn-infrastructure-common/src/main/groovy/org/onap/so/bpmn/infrastructure/scripts/ServiceIntentUtils.groovy | 10 |
1 files 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 |