diff options
author | c00149107 <chenchuanyu@huawei.com> | 2018-03-20 10:26:43 +0800 |
---|---|---|
committer | Chuanyu Chen <chenchuanyu@huawei.com> | 2018-03-20 08:21:30 +0000 |
commit | 916f61bd788d73549caf4135b2b2cc474694a504 (patch) | |
tree | 8e5c23f9bc998e882086425f51603fc1c536b72f /bpmn/MSOInfrastructureBPMN | |
parent | 0e50dd31cc9adeb6446529fbe712ac21c655bb90 (diff) |
Type lost bug fix
Type lost bug fix update
Change-Id: I6e875377636f645f430dd3f8cbb4ef5f47670eac
Issue-ID: SO-501
Signed-off-by: c00149107 <chenchuanyu@huawei.com>
Diffstat (limited to 'bpmn/MSOInfrastructureBPMN')
-rw-r--r-- | bpmn/MSOInfrastructureBPMN/src/main/groovy/org/openecomp/mso/bpmn/infrastructure/scripts/DoCreateE2EServiceInstance.groovy | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/bpmn/MSOInfrastructureBPMN/src/main/groovy/org/openecomp/mso/bpmn/infrastructure/scripts/DoCreateE2EServiceInstance.groovy b/bpmn/MSOInfrastructureBPMN/src/main/groovy/org/openecomp/mso/bpmn/infrastructure/scripts/DoCreateE2EServiceInstance.groovy index 959689e556..5eb3fd9f41 100644 --- a/bpmn/MSOInfrastructureBPMN/src/main/groovy/org/openecomp/mso/bpmn/infrastructure/scripts/DoCreateE2EServiceInstance.groovy +++ b/bpmn/MSOInfrastructureBPMN/src/main/groovy/org/openecomp/mso/bpmn/infrastructure/scripts/DoCreateE2EServiceInstance.groovy @@ -452,7 +452,7 @@ public class DoCreateE2EServiceInstance extends AbstractServiceTaskProcessor { * sequence resource. we should analyze resource sequence from service template * Here we make VF first, and then network for E2E service. */ - public void sequenceResoure(execution){ + public void sequenceResoure(DelegateExecution execution){ def isDebugEnabled=execution.getVariable("isDebugLogEnabled") utils.log("INFO", "======== Start sequenceResoure Process ======== ", isDebugEnabled) String serviceModelUUID = execution.getVariable("modelUuid") @@ -492,7 +492,7 @@ public class DoCreateE2EServiceInstance extends AbstractServiceTaskProcessor { utils.log("INFO", "======== COMPLETED sequenceResoure Process ======== ", isDebugEnabled) } - public void getCurrentResoure(execution){ + public void getCurrentResoure(DelegateExecution execution){ def isDebugEnabled=execution.getVariable("isDebugLogEnabled") utils.log("INFO", "======== Start getCurrentResoure Process ======== ", isDebugEnabled) def currentIndex = execution.getVariable("currentResourceIndex") @@ -505,7 +505,7 @@ public class DoCreateE2EServiceInstance extends AbstractServiceTaskProcessor { /** * sequence resource */ - public void parseNextResource(execution){ + public void parseNextResource(DelegateExecution execution){ def isDebugEnabled=execution.getVariable("isDebugLogEnabled") utils.log("INFO", "======== Start parseNextResource Process ======== ", isDebugEnabled) def currentIndex = execution.getVariable("currentResourceIndex") @@ -523,11 +523,11 @@ public class DoCreateE2EServiceInstance extends AbstractServiceTaskProcessor { /** * post config request. */ - public void postConfigRequest(execution){ + public void postConfigRequest(DelegateExecution execution){ //now do noting } - public void prepareResourceRecipeRequest(execution){ + public void prepareResourceRecipeRequest(DelegateExecution execution){ def isDebugEnabled=execution.getVariable("isDebugLogEnabled") utils.log("INFO", "======== Start prepareResourceRecipeRequest Process ======== ", isDebugEnabled) ResourceInput resourceInput = new ResourceInput() @@ -565,7 +565,7 @@ public class DoCreateE2EServiceInstance extends AbstractServiceTaskProcessor { utils.log("INFO", "======== COMPLETED prepareResourceRecipeRequest Process ======== ", isDebugEnabled) } - public void executeResourceRecipe(execution){ + public void executeResourceRecipe(DelegateExecution execution){ def isDebugEnabled=execution.getVariable("isDebugLogEnabled") utils.log("INFO", "======== Start executeResourceRecipe Process ======== ", isDebugEnabled) String requestId = execution.getVariable("msoRequestId") |