From 918d29898fcd0a93e8ce0b1d73e28d007f56c71b Mon Sep 17 00:00:00 2001 From: subhash kumar singh Date: Thu, 19 Apr 2018 07:06:28 +0000 Subject: Fix SDNC request structure Fix SDNC requst structure for e2e service. Following is current body for request: { "GENERIC-RESOURCE-API:input": { "GENERIC-RESOURCE-API:sdnc-request-header": { "GENERIC-RESOURCE-API:svc-request-id": "7b1e36ae-6691-4676-993b-4d173bad45cd", "GENERIC-RESOURCE-API:svc-action": "assign" }, "GENERIC-RESOURCE-API:request-information": { "GENERIC-RESOURCE-API:request-id": "7b1e36ae-6691-4676-993b-4d173bad45cd", "GENERIC-RESOURCE-API:request-action": "CreateServiceInstance" }, "GENERIC-RESOURCE-API:service-information": { "GENERIC-RESOURCE-API:service-id": "VOLTE_SERVICE_ID", "GENERIC-RESOURCE-API:subscription-service-type": "example-service-type", "GENERIC-RESOURCE-API:onap-model-information": { "GENERIC-RESOURCE-API:model-invariant-uuid": "4a09419a-c9fd-4a53-b1bd-b49603169ca1", "GENERIC-RESOURCE-API:model-uuid": "1bd0eae6-2dcc-4461-9ae6-56d641f369d6", "GENERIC-RESOURCE-API:model-name": "voLTE_HUAWEI_01:null" }, "GENERIC-RESOURCE-API:service-instance-id": "1ff52068-6622-440c-964f-5774d91a956a", "GENERIC-RESOURCE-API:global-customer-id": "test_custormer" }, "GENERIC-RESOURCE-API:service-request-input": { "GENERIC-RESOURCE-API:service-instance-name": "ONAP_223531" } } } Change-Id: I5098f3f8e11e0e1dad30b53fbf1db13aeac87f78 Issue-ID: SO-422 Signed-off-by: subhash kumar singh --- .../scripts/DoCreateResources.groovy | 24 ++++++++++++++- .../resources/subprocess/DoCreateResources.bpmn | 34 +++++++++++++++++----- 2 files changed, 49 insertions(+), 9 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 7ccc1b0046..6f41879e7d 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 @@ -20,6 +20,7 @@ package org.openecomp.mso.bpmn.infrastructure.scripts +import org.codehaus.jackson.map.ObjectMapper import org.openecomp.mso.bpmn.infrastructure.properties.BPMNProperties import java.util.ArrayList @@ -146,7 +147,28 @@ public class DoCreateResources extends AbstractServiceTaskProcessor execution.setVariable("sequencedResourceList", sequencedResourceList) utils.log("INFO", "sequencedResourceList: " + sequencedResourceList, isDebugEnabled) utils.log("INFO", "======== COMPLETED sequenceResoure Process ======== ", isDebugEnabled) - } + } + + public prepareServiceTopologyRequest(DelegateExecution execution) { + + def isDebugEnabled = execution.getVariable("isDebugLogEnabled") + utils.log("INFO", "======== Start prepareServiceTopologyRequest Process ======== ", isDebugEnabled) + + String serviceDecompose = execution.getVariable("serviceDecomposition") + + execution.setVariable("operationType", "create") + execution.setVariable("resourceType", "") + + String serviceInvariantUuid = jsonUtil.getJsonValue(serviceDecompose, "serviceResources.modelInfo.modelInvariantUuid") + String serviceUuid = jsonUtil.getJsonValue(serviceDecompose, "serviceResources.modelInfo.modelUuid") + String serviceModelName = jsonUtil.getJsonValue(serviceDecompose, "serviceResources.modelInfo.modelName") + + execution.setVariable("modelInvariantUuid", serviceInvariantUuid) + execution.setVariable("modelUuid", serviceUuid) + execution.setVariable("serviceModelName", serviceModelName) + + utils.log("INFO", "======== End prepareServiceTopologyRequest Process ======== ", isDebugEnabled) + } public void getCurrentResoure(DelegateExecution execution){ def isDebugEnabled=execution.getVariable("isDebugLogEnabled") diff --git a/bpmn/MSOInfrastructureBPMN/src/main/resources/subprocess/DoCreateResources.bpmn b/bpmn/MSOInfrastructureBPMN/src/main/resources/subprocess/DoCreateResources.bpmn index 9ed1431ed8..5bb3d315b0 100644 --- a/bpmn/MSOInfrastructureBPMN/src/main/resources/subprocess/DoCreateResources.bpmn +++ b/bpmn/MSOInfrastructureBPMN/src/main/resources/subprocess/DoCreateResources.bpmn @@ -20,7 +20,7 @@ def csi = new DoCreateResources() csi.postConfigRequest(execution)]]> - SequenceFlow_1vprtt9 + SequenceFlow_0k0f7lm SequenceFlow_11f2zuu @@ -85,7 +85,7 @@ ddsi.executeResourceRecipe(execution)]]> SequenceFlow_11f2zuu - + @@ -126,6 +126,14 @@ ex.processJavaException(execution)]]> + + SequenceFlow_1vprtt9 + SequenceFlow_0k0f7lm + + + @@ -144,15 +152,15 @@ ex.processJavaException(execution)]]> - + - - - + + + - + @@ -243,7 +251,7 @@ ex.processJavaException(execution)]]> - + @@ -347,6 +355,16 @@ ex.processJavaException(execution)]]> + + + + + + + + + + -- cgit 1.2.3-korg