diff options
author | hyu2010 <hyu2010b@gmail.com> | 2022-09-02 11:27:07 -0400 |
---|---|---|
committer | Henry Yu <hyu2010b@gmail.com> | 2022-09-14 15:51:40 +0000 |
commit | 2db5ad1db3eaeed01b2d32148bcab1bfa7d9a6c2 (patch) | |
tree | f950059f7924088e8c8b1f5948226da9b45544b7 /bpmn/so-bpmn-infrastructure-common/src/main/groovy | |
parent | 1c81fe215d896e1d0307313f04f45d2e27e42d28 (diff) |
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 <hyu2010b@gmail.com>
Change-Id: I9faf8adf5e3e0c88e49568e3ba800ac415e19282
Diffstat (limited to 'bpmn/so-bpmn-infrastructure-common/src/main/groovy')
-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 |