diff options
author | subhash kumar singh <subhash.kumar.singh@huawei.com> | 2018-04-06 08:21:51 +0000 |
---|---|---|
committer | Rob Daugherty <rd472p@att.com> | 2018-04-06 14:13:29 +0000 |
commit | 9c1a82863dd6d5fdc6e7b051c89a2ed0b34d01cd (patch) | |
tree | 15c236c8afcd5daf279d9d6feefcd198b064c710 /bpmn/MSOInfrastructureBPMN/src/main/groovy | |
parent | d36a996f6f10da1723d82ee70387b1460a8827ec (diff) |
Pass uuiRequest as input variable
pass uuiRequets as input variable.
Change-Id: I4af54ffe95aa109b52b355f6adf413c27a81a97b
Issue-ID: SO-422
Signed-off-by: subhash kumar singh <subhash.kumar.singh@huawei.com>
Diffstat (limited to 'bpmn/MSOInfrastructureBPMN/src/main/groovy')
-rw-r--r-- | bpmn/MSOInfrastructureBPMN/src/main/groovy/org/openecomp/mso/bpmn/infrastructure/scripts/DoCreateResources.groovy | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bpmn/MSOInfrastructureBPMN/src/main/groovy/org/openecomp/mso/bpmn/infrastructure/scripts/DoCreateResources.groovy b/bpmn/MSOInfrastructureBPMN/src/main/groovy/org/openecomp/mso/bpmn/infrastructure/scripts/DoCreateResources.groovy index 6b0990ba5d..93f86592ab 100644 --- a/bpmn/MSOInfrastructureBPMN/src/main/groovy/org/openecomp/mso/bpmn/infrastructure/scripts/DoCreateResources.groovy +++ b/bpmn/MSOInfrastructureBPMN/src/main/groovy/org/openecomp/mso/bpmn/infrastructure/scripts/DoCreateResources.groovy @@ -185,8 +185,8 @@ public class DoCreateResources extends AbstractServiceTaskProcessor String incomingRequest = execution.getVariable("uuiRequest") //set the requestInputs from tempalte To Be Done - String serviceModelUuid = execution.getVariable("modelUuid") - String serviceParameters = jsonUtil.getJsonValue(incomingRequest, "service.parameters") + String serviceModelUuid = jsonUtil.getJsonValue(incomingRequest,"service.serviceUuid") + String serviceParameters = jsonUtil.getJsonValue(incomingRequest, "service.parameters") String resourceParameters = ResourceRequestBuilder.buildResourceRequestParameters(execution, serviceModelUuid, resourceCustomizationUuid, serviceParameters) resourceInput.setResourceParameters(resourceParameters) execution.setVariable("resourceInput", resourceInput) |