2 * ============LICENSE_START=======================================================
4 * ================================================================================
5 * Copyright (C) 2018 Huawei Technologies Co., Ltd. All rights reserved.
6 * ================================================================================
7 * Licensed under the Apache License, Version 2.0 (the "License")
8 * you may not use this file except in compliance with the License.
9 * You may obtain a copy of the License at
11 * http://www.apache.org/licenses/LICENSE-2.0
13 * Unless required by applicable law or agreed to in writing, software
14 * distributed under the License is distributed on an "AS IS" BASIS,
15 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 * See the License for the specific language governing permissions and
17 * limitations under the License.
18 * ============LICENSE_END=========================================================
21 package org.onap.so.bpmn.infrastructure.scripts
23 import org.json.JSONObject
26 import static org.apache.commons.lang3.StringUtils.*
27 import groovy.xml.XmlUtil
29 import org.onap.so.bpmn.common.scripts.AbstractServiceTaskProcessor
30 import org.onap.so.bpmn.common.scripts.ExceptionUtil
31 import org.onap.so.bpmn.common.scripts.ExternalAPIUtil
32 import org.onap.so.bpmn.common.scripts.AaiUtil
33 import org.onap.so.bpmn.common.scripts.MsoUtils
34 import org.onap.so.bpmn.common.recipe.ResourceInput
35 import org.onap.so.bpmn.common.resource.ResourceRequestBuilder
36 import org.onap.so.bpmn.core.WorkflowException
37 import org.onap.so.bpmn.core.json.JsonUtils
38 import org.onap.so.bpmn.infrastructure.workflow.serviceTask.client.builder.AbstractBuilder
39 import org.onap.so.rest.APIResponse
40 import org.onap.so.bpmn.common.scripts.SDNCAdapterUtils
41 import org.onap.so.bpmn.infrastructure.workflow.service.ServicePluginFactory
43 import org.onap.so.logger.MsoLogger
45 import org.camunda.bpm.engine.runtime.Execution
46 import org.camunda.bpm.engine.delegate.BpmnError
47 import org.camunda.bpm.engine.delegate.DelegateExecution
48 import org.apache.commons.lang3.*
49 import org.apache.commons.codec.binary.Base64
50 import org.springframework.web.util.UriUtils
51 import org.onap.so.rest.RESTClient
52 import org.onap.so.rest.RESTConfig
55 * This groovy class supports the <class>Create3rdONAPE2EServiceInstance.bpmn</class> process.
56 * flow for Create E2EServiceInstance in 3rdONAP
58 public class Create3rdONAPE2EServiceInstance extends AbstractServiceTaskProcessor {
60 String Prefix = "CRE3rdONAPESI_"
62 ExceptionUtil exceptionUtil = new ExceptionUtil()
64 JsonUtils jsonUtil = new JsonUtils()
66 private static final MsoLogger msoLogger = MsoLogger.getMsoLogger(MsoLogger.Catalog.BPEL, Create3rdONAPE2EServiceInstance.class)
68 public void checkSPPartnerInfo (DelegateExecution execution) {
69 msoLogger.info(" ***** Started checkSPPartnerInfo *****")
71 //get bpmn inputs from resource request.
72 String requestId = execution.getVariable("mso-request-id")
73 String requestAction = execution.getVariable("requestAction")
74 msoLogger.info("The requestAction is: " + requestAction)
75 String recipeParamsFromRequest = execution.getVariable("recipeParams")
76 msoLogger.info("The recipeParams is: " + recipeParamsFromRequest)
77 String resourceInput = execution.getVariable("resourceInput")
78 msoLogger.info("The resourceInput is: " + resourceInput)
79 //Get ResourceInput Object
80 ResourceInput resourceInputObj = ResourceRequestBuilder.getJsonObject(resourceInput, ResourceInput.class)
81 String resourceInputPrameters = resourceInputObj.getResourceParameters()
82 String inputParametersJson = jsonUtil.getJsonValue(resourceInputPrameters, "requestInputs")
83 JSONObject inputParameters = new JSONObject(customizeResourceParam(inputParametersJson))
85 // set local resourceInput
86 execution.setVariable(Prefix + "ResourceInput", resourceInputObj)
88 boolean is3rdONAPExist = false
90 if(inputParameters.has("id"))
92 String sppartnerId = inputParameters.get("id")
94 if(inputParameters.has("url"))
96 String sppartnerUrl = inputParameters.get("url")
97 if(!isBlank(sppartnerUrl)) {
98 execution.setVariable(Prefix + "SppartnerUrl", sppartnerUrl)
102 is3rdONAPExist = false
103 String msg = "sppartner Url is blank."
107 if(inputParameters.has("providingServiceInvarianteUuid"))
109 String sppartnerInvarianteUUID = inputParameters.get("providingServiceInvarianteUuid")
110 execution.setVariable(Prefix + "SppartnerInvarianteUUID", sppartnerInvarianteUUID)
111 is3rdONAPExist = true
114 is3rdONAPExist = false
115 String msg = "sppartner providingServiceInvarianteUuid is blank."
118 if(inputParameters.has("providingServiceUuid"))
120 String sppartnerUUID = inputParameters.get("providingServiceUuid")
121 execution.setVariable(Prefix + "SppartnerUUID", sppartnerUUID)
122 is3rdONAPExist = true
125 is3rdONAPExist = false
126 String msg = "sppartner providingServiceUuid is blank."
130 if(inputParameters.has("handoverMode"))
132 String handoverMode = inputParameters.get("handoverMode")
133 execution.setVariable(Prefix + "HandoverMode", handoverMode)
134 is3rdONAPExist = true
137 is3rdONAPExist = false
138 String msg = "sppartner handoverMode is blank."
142 execution.setVariable("Is3rdONAPExist", is3rdONAPExist)
143 execution.setVariable(Prefix + "ServiceInstanceId", resourceInputObj.getServiceInstanceId())
144 execution.setVariable("mso-request-id", requestId)
145 execution.setVariable("mso-service-instance-id", resourceInputObj.getServiceInstanceId())
147 } catch (BpmnError e) {
149 } catch (Exception ex){
150 String msg = "Exception in checkSPPartnerInfo " + ex.getMessage()
152 exceptionUtil.buildAndThrowWorkflowException(execution, 7000, msg)
156 public void checkLocallCall (DelegateExecution execution) {
157 def isDebugEnabled = execution.getVariable("isDebugLogEnabled")
158 msoLogger.info(" ***** Started checkLocallCall *****")
161 //Get ResourceInput Object
162 ResourceInput resourceInputObj = execution.getVariable(Prefix + "ResourceInput")
165 String incomingRequest = resourceInputObj.getRequestsInputs()
166 String serviceParameters = jsonUtil.getJsonValue(incomingRequest, "service.parameters")
167 JSONObject inputParameters = new JSONObject(customizeResourceParam(serviceParameters))
168 execution.setVariable(Prefix + "ServiceParameters", inputParameters)
170 // CallSource is added only when ONAP SO calling 3rdONAP(External API) SO(Remote call)
171 boolean isLocalCall = true
172 String callSource = "UUI"
173 if(inputParameters.has("CallSource"))
175 callSource = inputParameters.get("CallSource")
176 if("ExternalAPI".equalsIgnoreCase(callSource)) {
180 execution.setVariable(Prefix + "CallSource", callSource)
181 msoLogger.debug("callSource is: " + callSource )
183 execution.setVariable("IsLocalCall", isLocalCall)
185 } catch (Exception ex){
186 String msg = "Exception in checkLocallCall " + ex.getMessage()
188 exceptionUtil.buildAndThrowWorkflowException(execution, 7000, msg)
192 public void preProcessRequest(DelegateExecution execution){
193 def isDebugEnabled = execution.getVariable("isDebugLogEnabled")
194 msoLogger.info(" ***** Started preProcessRequest *****")
196 ResourceInput resourceInputObj = execution.getVariable(Prefix + "ResourceInput")
199 String globalSubscriberId = resourceInputObj.getGlobalSubscriberId()
200 if (isBlank(globalSubscriberId)) {
201 msg = "Input globalSubscriberId is null"
203 exceptionUtil.buildAndThrowWorkflowException(execution, 500, msg)
206 execution.setVariable("globalSubscriberId", globalSubscriberId)
207 msoLogger.info("globalSubscriberId:" + globalSubscriberId)
209 String serviceType = resourceInputObj.getServiceType()
210 if (isBlank(serviceType)) {
211 msg = "Input serviceType is null"
213 exceptionUtil.buildAndThrowWorkflowException(execution, 500, msg)
215 execution.setVariable("serviceType", serviceType)
216 msoLogger.info("serviceType:" + serviceType)
218 String resourceName = resourceInputObj.getResourceInstanceName()
219 if (isBlank(resourceName)) {
220 msg = "Input resourceName is null"
222 exceptionUtil.buildAndThrowWorkflowException(execution, 500, msg)
224 execution.setVariable("resourceName", resourceName)
225 msoLogger.info("resourceName:" + resourceName)
227 int beginIndex = resourceName.indexOf("_") + 1
228 String serviceInstanceName = resourceName.substring(beginIndex)
229 execution.setVariable("serviceInstanceName", serviceInstanceName)
231 String serviceInstanceId = resourceInputObj.getServiceInstanceId()
232 if (isBlank(serviceInstanceId)) {
233 msg = "Input serviceInstanceId is null"
235 exceptionUtil.buildAndThrowWorkflowException(execution, 500, msg)
237 execution.setVariable("serviceInstanceId", serviceInstanceId)
238 msoLogger.info("serviceInstanceId:" + serviceInstanceId)
240 } catch (BpmnError e) {
242 } catch (Exception ex){
243 String msg = "Exception in preProcessRequest " + ex.getMessage()
245 exceptionUtil.buildAndThrowWorkflowException(execution, 7000, msg)
249 public void prepareUpdateProgress(DelegateExecution execution) {
250 def isDebugEnabled = execution.getVariable("isDebugLogEnabled")
251 msoLogger.info(" ***** Started prepareUpdateProgress *****")
252 ResourceInput resourceInputObj = execution.getVariable(Prefix + "ResourceInput")
253 String operType = resourceInputObj.getOperationType()
254 String resourceCustomizationUuid = resourceInputObj.getResourceModelInfo().getModelCustomizationUuid()
255 String ServiceInstanceId = resourceInputObj.getServiceInstanceId()
256 String modelName = resourceInputObj.getResourceModelInfo().getModelName()
257 String operationId = resourceInputObj.getOperationId()
258 String progress = execution.getVariable("progress")
259 String status = execution.getVariable("status")
260 String statusDescription = execution.getVariable("statusDescription")
263 <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
264 xmlns:ns="http://org.openecomp.mso/requestsdb">
267 <ns:updateResourceOperationStatus>
268 <operType>${operType}</operType>
269 <operationId>${operationId}</operationId>
270 <progress>${progress}</progress>
271 <resourceTemplateUUID>${resourceCustomizationUuid}</resourceTemplateUUID>
272 <serviceId>${ServiceInstanceId}</serviceId>
273 <status>${status}</status>
274 <statusDescription>${statusDescription}</statusDescription>
275 </ns:updateResourceOperationStatus>
277 </soapenv:Envelope>"""
279 setProgressUpdateVariables(execution, body)
280 msoLogger.info(" ***** Exit prepareUpdateProgress *****")
283 public void allocateCrossONAPResource(DelegateExecution execution) {
284 def isDebugEnabled = execution.getVariable("isDebugLogEnabled")
285 msoLogger.info(" ***** Started allocateCrossONAPResource *****")
287 //get TP links from AAI for SOTN handoverMode only
288 String handoverMode = execution.getVariable(Prefix + "HandoverMode")
289 if("SOTN".equalsIgnoreCase(handoverMode)) {
290 //to do get tp link in AAI
293 // Put TP Link info into serviceParameters
294 String accessProviderId = ""
295 String accessClientId = ""
296 String accessTopologyId = ""
297 String accessNodeId = ""
298 String accessLtpId = ""
299 JSONObject inputParameters = execution.getVariable(Prefix + "ServiceParameters")
300 inputParameters.put("access-provider-id", accessProviderId)
301 inputParameters.put("access-client-id", accessClientId)
302 inputParameters.put("access-topology-id", accessTopologyId)
303 inputParameters.put("access-node-id", accessNodeId)
304 inputParameters.put("access-ltp-id", accessLtpId)
305 execution.setVariable(Prefix + "ServiceParameters", inputParameters)
308 msoLogger.info("Exit " + allocateCrossONAPResource)
311 public void prepare3rdONAPRequest(DelegateExecution execution) {
312 def isDebugEnabled = execution.getVariable("isDebugLogEnabled")
313 msoLogger.info(" ***** Started prepare3rdONAPRequest *****")
315 String sppartnerUrl = execution.getVariable(Prefix + "SppartnerUrl")
316 String extAPIPath = sppartnerUrl + 'serviceOrder'
317 execution.setVariable("ExternalAPIURL", extAPIPath)
319 // ExternalAPI message format
320 String externalId = execution.getVariable("resourceName")
321 String category = "E2E Service"
322 String description = "Service Order from SPPartner"
323 String requestedStartDate = utils.generateCurrentTimeInUtc()
324 String requestedCompletionDate = utils.generateCurrentTimeInUtc()
325 String priority = "1" // 0-4 0:highest
326 String subscriberId = execution.getVariable("globalSubscriberId")
327 String customerRole = ""
328 String subscriberName = ""
329 String referredType = execution.getVariable("serviceType")
330 String orderItemId = "1"
331 String action = "add" //for create
332 String serviceState = "active"
333 String serviceName = execution.getVariable("serviceInstanceName")
334 String serviceId = execution.getVariable("serviceInstanceId")
336 Map<String, String> valueMap = new HashMap<>()
337 valueMap.put("externalId", '"' + externalId + '"')
338 valueMap.put("category", '"' + category + '"')
339 valueMap.put("description", '"' + description + '"')
340 valueMap.put("requestedStartDate", '"' + requestedStartDate + '"')
341 valueMap.put("requestedCompletionDate", '"' + requestedCompletionDate + '"')
342 valueMap.put("priority", '"'+ priority + '"')
343 valueMap.put("subscriberId", '"' + subscriberId + '"')
344 valueMap.put("customerRole", '"' + customerRole + '"')
345 valueMap.put("subscriberName", '"' + subscriberName + '"')
346 valueMap.put("referredType", '"' + referredType + '"')
347 valueMap.put("orderItemId", '"' + orderItemId + '"')
348 valueMap.put("action", '"' + action + '"')
349 valueMap.put("serviceState", '"' + serviceState + '"')
350 valueMap.put("serviceName", '"' + serviceName + '"')
351 valueMap.put("serviceId", '"' + serviceId + '"')
353 ExternalAPIUtil externalAPIUtil = new ExternalAPIUtil(this)
355 // insert CallSource='ExternalAPI' to uuiRequest
356 Map<String, String> callSourceMap = new HashMap<>()
357 callSourceMap.put("inputName", "CallSource")
358 callSourceMap.put("inputValue", "ExternalAPI")
359 String _requestInputs_ = externalAPIUtil.setTemplate(ExternalAPIUtil.RequestInputsTemplate, callSourceMap)
361 // Transfer all uuiRequest incomeParameters to ExternalAPI format
362 JSONObject inputParameters = execution.getVariable(Prefix + "ServiceParameters")
363 for(String key : inputParameters.keySet()) {
364 String inputName = key
365 String inputValue = inputParameters.opt(key)
366 Map<String, String> requestInputsMap = new HashMap<>()
367 requestInputsMap.put("inputName", '"' + inputName+ '"')
368 requestInputsMap.put("inputValue", '"' + inputValue + '"')
369 _requestInputs_ += ",\n" + externalAPIUtil.setTemplate(ExternalAPIUtil.RequestInputsTemplate, requestInputsMap)
371 valueMap.put("_requestInputs_", _requestInputs_)
373 String payload = externalAPIUtil.setTemplate(ExternalAPIUtil.PostServiceOrderRequestsTemplate, valueMap)
374 execution.setVariable(Prefix + "Payload", payload)
375 msoLogger.info("Exit " + prepare3rdONAPRequest)
378 public void doCreateE2ESIin3rdONAP(DelegateExecution execution) {
379 def isDebugEnabled = execution.getVariable("isDebugLogEnabled")
380 msoLogger.info(" ***** Started doCreateE2ESIin3rdONAP *****")
382 String extAPIPath = execution.getVariable("ExternalAPIURL")
383 String payload = execution.getVariable(Prefix + "Payload")
385 ExternalAPIUtil externalAPIUtil = new ExternalAPIUtil(this)
387 APIResponse response = externalAPIUtil.executeExternalAPIPostCall(execution, extAPIPath, payload)
389 int responseCode = response.getStatusCode()
390 execution.setVariable(Prefix + "PostServiceOrderResponseCode", responseCode)
391 msoLogger.debug("Post ServiceOrder response code is: " + responseCode)
393 String extApiResponse = response.getResponseBodyAsString()
394 JSONObject responseObj = new JSONObject(extApiResponse)
395 execution.setVariable(Prefix + "PostServiceOrderResponse", extApiResponse)
397 if(responseCode == 200 || responseCode == 201 || responseCode == 202 )
398 //200 OK 201 CREATED 202 ACCEPTED
400 msoLogger.debug("Post ServiceOrder Received a Good Response")
401 String serviceOrderId = responseObj.get("ServiceOrderId")
402 execution.setVariable(Prefix + "SuccessIndicator", true)
403 execution.setVariable("serviceOrderId", serviceOrderId)
406 msoLogger.debug("Post ServiceOrder Received a Bad Response Code. Response Code is: " + responseCode)
407 exceptionUtil.buildAndThrowWorkflowException(execution, 500, "Post ServiceOrder Received a bad response from 3rdONAP External API")
410 msoLogger.info("Exit " + doCreateE2ESIin3rdONAP)
414 public void getE2ESIProgressin3rdONAP(DelegateExecution execution) {
415 def isDebugEnabled = execution.getVariable("isDebugLogEnabled")
416 msoLogger.info(" ***** Started getE2ESIProgressin3rdONAP *****")
418 String extAPIPath = execution.getVariable("ExternalAPIURL")
419 extAPIPath += "/" + execution.getVariable("ServiceOrderId")
421 ExternalAPIUtil externalAPIUtil = new ExternalAPIUtil(this)
423 APIResponse response = externalAPIUtil.executeExternalAPIGetCall(execution, extAPIPath)
425 int responseCode = response.getStatusCode()
426 execution.setVariable(Prefix + "GetServiceOrderResponseCode", responseCode)
427 msoLogger.debug("Get ServiceOrder response code is: " + responseCode)
429 String extApiResponse = response.getResponseBodyAsString()
430 JSONObject responseObj = new JSONObject(extApiResponse)
431 execution.setVariable(Prefix + "GetServiceOrderResponse", extApiResponse)
433 //Process Response //200 OK 201 CREATED 202 ACCEPTED
434 if(responseCode == 200 || responseCode == 201 || responseCode == 202 )
436 msoLogger.debug("Get ServiceOrder Received a Good Response")
437 String serviceOrderState = responseObj.get("State")
438 execution.setVariable(Prefix + "SuccessIndicator", true)
439 execution.setVariable("serviceOrderState", serviceOrderState)
441 // Get serviceOrder State and process progress
442 if("ACKNOWLEDGED".equalsIgnoreCase(serviceOrderState)) {
443 execution.setVariable("progress", 15)
444 execution.setVariable("status", "processing")
446 if("INPROGRESS".equalsIgnoreCase(serviceOrderState)) {
447 execution.setVariable("progress", 40)
448 execution.setVariable("status", "processing")
450 if("COMPLETED".equalsIgnoreCase(serviceOrderState)) {
451 execution.setVariable("progress", 100)
452 execution.setVariable("status", "finished")
454 if("FAILED".equalsIgnoreCase(serviceOrderState)) {
455 execution.setVariable("progress", 100)
456 execution.setVariable("status", "error")
459 execution.setVariable("progress", 100)
460 execution.setVariable("status", "error")
461 execution.setVariable("statusDescription", "Create Service Order Status is unknown")
463 execution.setVariable("statusDescription", "Create Service Order Status is " + serviceOrderState)
466 msoLogger.debug("Get ServiceOrder Received a Bad Response Code. Response Code is: " + responseCode)
467 execution.setVariable("progress", 100)
468 execution.setVariable("status", "error")
469 execution.setVariable("statusDescription", "Get ServiceOrder Received a bad response")
470 exceptionUtil.buildAndThrowWorkflowException(execution, 500, "Get ServiceOrder Received a bad response from 3rdONAP External API")
473 msoLogger.info("Exit " + getE2ESIProgressin3rdONAP)
479 public void timeDelay(DelegateExecution execution) {
480 def isDebugEnabled= execution.getVariable("isDebugLogEnabled")
483 } catch(InterruptedException e) {
484 utils.log("ERROR", "Time Delay exception" + e )
488 public void saveSPPartnerInAAI(DelegateExecution execution) {
489 def isDebugEnabled = execution.getVariable("isDebugLogEnabled")
490 msoLogger.info(" ***** Started postCreateE2ESIin3rdONAP *****")
492 String sppartnerId = UUID.randomUUID().toString()
493 String sppartnerUrl = execution.getVariable(Prefix + "SppartnerUrl")
494 String callSource = execution.getVariable(Prefix + "CallSource")
495 String serviceInstanceId = execution.getVariable("serviceInstanceId")
497 AaiUtil aaiUriUtil = new AaiUtil(this)
498 String aai_uri = aaiUriUtil.getBusinessSPPartnerUri(execution)
499 String namespace = aaiUriUtil.getNamespaceFromUri(aai_uri)
502 """<sp-partner xmlns=\"${namespace}\">
503 <id>${sppartnerId}</id>
504 <url>${sppartnerUrl}</url>
505 <callSource>${callSource}</callSource>
507 <service-instance-id>${serviceInstanceId}</service-instance-id>
509 </sp-partner>""".trim()
510 utils.logAudit(payload)
512 String aai_endpoint = execution.getVariable("URN_aai_endpoint")
513 String serviceAaiPath = "${aai_endpoint}${aai_uri}/" + UriUtils.encode(sppartnerId,"UTF-8")
515 APIResponse response = aaiUriUtil.executeAAIPutCall(execution, serviceAaiPath, payload)
516 int responseCode = response.getStatusCode()
517 execution.setVariable(Prefix + "PutSppartnerResponseCode", responseCode)
518 msoLogger.debug(" Put sppartner response code is: " + responseCode)
520 String aaiResponse = response.getResponseBodyAsString()
521 aaiResponse = StringEscapeUtils.unescapeXml(aaiResponse)
522 execution.setVariable(Prefix + "PutSppartnerResponse", aaiResponse)
525 if(responseCode == 200 || responseCode == 201 || responseCode == 202 )
526 //200 OK 201 CREATED 202 ACCEPTED
528 msoLogger.debug("PUT sppartner Received a Good Response")
529 execution.setVariable(Prefix + "SuccessIndicator", true)
533 msoLogger.debug("Put sppartner Received a Bad Response Code. Response Code is: " + responseCode)
534 exceptionUtil.MapAAIExceptionToWorkflowExceptionGeneric(execution, aaiResponse, responseCode)
535 throw new BpmnError("MSOWorkflowException")
538 msoLogger.info("Exit " + saveSPPartnerInAAI)
541 private void setProgressUpdateVariables(DelegateExecution execution, String body) {
542 def dbAdapterEndpoint = execution.getVariable("URN_mso_adapters_openecomp_db_endpoint")
543 execution.setVariable("CVFMI_dbAdapterEndpoint", dbAdapterEndpoint)
544 execution.setVariable("CVFMI_updateResOperStatusRequest", body)
547 public void postProcess(DelegateExecution execution){
548 def isDebugEnabled = execution.getVariable("isDebugLogEnabled")
549 msoLogger.info(" ***** Started postProcess *****")
550 String responseCode = execution.getVariable(Prefix + "PutSppartnerResponseCode")
551 String responseObj = execution.getVariable(Prefix + "PutSppartnerResponse")
553 msoLogger.info("response from AAI for put sppartner, response code :" + responseCode + " response object :" + responseObj)
554 msoLogger.info(" ***** Exit postProcess *****")
557 public void sendSyncResponse (DelegateExecution execution) {
558 def isDebugEnabled=execution.getVariable("isDebugLogEnabled")
559 msoLogger.debug(" *** sendSyncResponse *** ")
562 String operationStatus = "finished"
563 // RESTResponse for main flow
564 String resourceOperationResp = """{"operationStatus":"${operationStatus}"}""".trim()
565 msoLogger.debug(" sendSyncResponse to APIH:" + "\n" + resourceOperationResp)
566 sendWorkflowResponse(execution, 202, resourceOperationResp)
567 execution.setVariable("sentSyncResponse", true)
569 } catch (Exception ex) {
570 String msg = "Exceptuion in sendSyncResponse:" + ex.getMessage()
572 exceptionUtil.buildAndThrowWorkflowException(execution, 7000, msg)
574 msoLogger.debug(" ***** Exit sendSyncResopnse *****")
577 String customizeResourceParam(String inputParametersJson) {
578 List<Map<String, Object>> paramList = new ArrayList()
579 JSONObject jsonObject = new JSONObject(inputParametersJson)
580 Iterator iterator = jsonObject.keys()
581 while (iterator.hasNext()) {
582 String key = iterator.next()
583 HashMap<String, String> hashMap = new HashMap()
584 hashMap.put("name", key)
585 hashMap.put("value", jsonObject.get(key))
586 paramList.add(hashMap)
588 Map<String, List<Map<String, Object>>> paramMap = new HashMap()
589 paramMap.put("param", paramList)
591 return new JSONObject(paramMap).toString()