[MSO-8] Update the maven dependency
[so.git] / bpmn / MSOCommonBPMN / src / main / groovy / org / openecomp / mso / bpmn / common / scripts / FalloutHandler.groovy
@@ -18,7 +18,7 @@
  * ============LICENSE_END=========================================================
  */
 
-package com.att.bpm.scripts
+package org.openecomp.mso.bpmn.common.scripts
 
 import java.text.SimpleDateFormat
 
@@ -26,18 +26,17 @@ import org.apache.commons.lang3.*
 import org.camunda.bpm.engine.runtime.Execution
 
 public class FalloutHandler extends AbstractServiceTaskProcessor {
-
        String Prefix="FH_"
        ExceptionUtil exceptionUtil = new ExceptionUtil()
-
+       
        public initializeProcessVariables(Execution execution){
                def method = getClass().getSimpleName() + '.initializeProcessVariables(' +'execution=' + execution.getId() +')'
                def isDebugLogEnabled = execution.getVariable('isDebugLogEnabled')
                logDebug('Entered ' + method, isDebugLogEnabled)
-
+       
                try {
                        execution.setVariable("prefix",Prefix)
-
+       
                        //These variables are form the input Message to the BPMN
                        execution.setVariable("FH_request_id","")
                        execution.setVariable("FH_request_action","")
@@ -51,74 +50,81 @@ public class FalloutHandler extends AbstractServiceTaskProcessor {
 
                        //These variables are for Get Mso Aai Password Adapter
                        execution.setVariable("FH_deliveryStatus", true)
-
-                       //Notify CSI Adapter variables
-                       execution.setVariable("FH_notifyCSIPayload", "")
-                       execution.setVariable("FH_notifyCSIResponseCode", null)
-                       execution.setVariable("FH_notifyCSIResponse", "")
-
+       
                        //update Response Status to pending ...Adapter variables
                        execution.setVariable("FH_updateResponseStatusPayload", null)
                        execution.setVariable("FH_updateResponseStatusResponse", null)
-
+       
                        //update Request Gamma ...Adapter variables
                        execution.setVariable("FH_updateRequestGammaPayload", "")
                        execution.setVariable("FH_updateRequestGammaResponse", null)
                        execution.setVariable("FH_updateRequestGammaResponseCode", null)
-
+       
                        //update Request Infra ...Adapter variables
                        execution.setVariable("FH_updateRequestInfraPayload", "")
                        execution.setVariable("FH_updateRequestInfraResponse", null)
                        execution.setVariable("FH_updateRequestInfraResponseCode", null)
-
+       
                        //assign True to success variable
                        execution.setVariable("FH_success", true)
-
+       
                        //Set notify status to Failed variable
                        execution.setVariable("FH_NOTIFY_STATUS", "SUCCESS")
-
+       
                        //Set DB update variable
                        execution.setVariable("FH_updateRequestPayload", "")
                        execution.setVariable("FH_updateRequestResponse", null)
                        execution.setVariable("FH_updateRequestResponseCode", null)
-
+       
                        //Auth variables
                        execution.setVariable("BasicAuthHeaderValue","")
-
+       
                        //Parameter list
                        execution.setVariable("FH_parameterList",  "")
-
+       
                        //Response variables
                        execution.setVariable("FalloutHandlerResponse","")
                        execution.setVariable("FH_ErrorResponse", null)
                        execution.setVariable("FH_ResponseCode", "")
-
+       
                } catch (Exception e) {
                        logError('Caught exception in ' + method, e)
-                       exceptionUtil.buildWorkflowException(execution, 2000, "Internal Error - Occured in " + method)
+               //      exceptionUtil.buildWorkflowException(execution, 2000, "Internal Error - Occured in " + method)
                }
        }
-
+       
        public void preProcessRequest (Execution execution) {
                def method = getClass().getSimpleName() + '.preProcessRequest(' +'execution=' + execution.getId() +')'
                def isDebugLogEnabled = execution.getVariable('isDebugLogEnabled')
                logDebug('Entered ' + method, isDebugLogEnabled)
-
+       
                // Initialize flow variables
                initializeProcessVariables(execution)
                setSuccessIndicator(execution, false)
-
+       
+               try {
+                       String basicAuthValueDB = execution.getVariable("URN_mso_adapters_db_auth")
+                       utils.log("DEBUG", " Obtained BasicAuth userid password for Catalog DB adapter: " + basicAuthValueDB, isDebugLogEnabled)
+                       
+                       def encodedString = utils.getBasicAuth(basicAuthValueDB, execution.getVariable("URN_mso_msoKey"))
+                       execution.setVariable("BasicAuthHeaderValueDB",encodedString)
+               } catch (IOException ex) {
+                       String dataErrorMessage = " Unable to encode Catalog DB user/password string - " + ex.getMessage()
+                       utils.log("DEBUG", dataErrorMessage, isDebugLogEnabled)
+                       exceptionUtil.buildAndThrowWorkflowException(execution, 2500, dataErrorMessage)
+               } 
+               
                try {
                        def xml = execution.getVariable("FalloutHandlerRequest")
                        utils.log("DEBUG", " XML --> " + xml, isDebugLogEnabled)
                        utils.logAudit("FalloutHandler request: " + xml)
-
+       
                        //Check the incoming request type
                        //Incoming request can be ACTIVE_REQUESTS (request-information node) or  INFRA_ACTIVE_REQUESTS (request-info node)
                        if (utils.nodeExists(xml, "request-information")) {
                                execution.setVariable("FH_request_id-Ok", true) // Incoming request is for ACTIVE_REQUESTS
                        }
-
+       
                        //Check notification-url for the incoming request type
                        //ACTIVE_REQUESTS may have notificationurl node
                        //INFRA_ACTIVE_REQUESTS notificationurl node does not exist
@@ -126,11 +132,12 @@ public class FalloutHandler extends AbstractServiceTaskProcessor {
                        if (utils.nodeExists(xml, "notification-url")) {
                                notificationurl = utils.getNodeText(xml,"notification-url")
                                if(notificationurl != null && !notificationurl.isEmpty()) {
+                                       utils.log("DEBUG", "********** Incoming notification Url is: " + notificationurl,isDebugLogEnabled);
                                        execution.setVariable("FH_notification-url-Ok", true)
                                        execution.setVariable("FH_notification-url",notificationurl)
                                }
                        }
-
+       
                        //Check request_id for the incoming request type
                        //For INFRA_ACTIVE_REQUESTS payload request-id IS optional (Not sure why this is option since req id is primary key ... also tried exe through SOAP UI to check if MSO code handles null like auto generated seq not it does not)
                        //For ACTIVE_REQUESTS payload request-id is NOT optional
@@ -139,7 +146,7 @@ public class FalloutHandler extends AbstractServiceTaskProcessor {
                                execution.setVariable("FH_request_id",utils.getNodeText(xml,"request-id"))
                        }
                        utils.logAudit("FH_request_id: " + execution.getVariable("FH_request_id"))
-
+       
                        // INFRA_ACTIVE_REQUESTS         have "action" element ... mandatory
                        // ACTIVE_REQUEST have "request-action" ... mandatory
                        if (utils.nodeExists(xml, "request-action")) {
@@ -147,8 +154,8 @@ public class FalloutHandler extends AbstractServiceTaskProcessor {
                        } else if (utils.nodeExists(xml, "action")) {
                                execution.setVariable("FH_request_action",utils.getNodeText(xml,"action"))
                        }
-
-
+       
+       
                        //Check source for the incoming request type
                        //For INFRA_ACTIVE_REQUESTS payload source IS optional
                        //For ACTIVE_REQUESTS payload source is NOT optional
@@ -156,7 +163,7 @@ public class FalloutHandler extends AbstractServiceTaskProcessor {
                        if (utils.nodeExists(xml, "source")) {
                                execution.setVariable("FH_source",utils.getNodeText(xml,"source"))
                        }
-
+       
                        //Check if ErrorCode node exists. If yes, initialize it from request xml, if no, it will stay with defaulf value already set in initializeProcessVariables() method above.
                        def errorCode = ""
                        if (utils.nodeExists(xml, "ErrorCode")) {
@@ -166,7 +173,7 @@ public class FalloutHandler extends AbstractServiceTaskProcessor {
                                }
                        }
                        utils.logAudit("FH_ErrorCode: " + errorCode)
-
+       
                        //Check if ErrorMessage node exists. If yes, initialize it from request xml, if no, it will stay with defaulf value already set in initializeProcessVariables() method above.
                        def errorMessage = ""
                        if (utils.nodeExists(xml, "ErrorMessage")) {
@@ -176,197 +183,178 @@ public class FalloutHandler extends AbstractServiceTaskProcessor {
                                        execution.setVariable("FH_ErrorMessage", errorCode)
                                }
                        }
-
+       
                        //Check for Parameter List
                        if (utils.nodeExists(xml, "parameter-list")) {
                                def parameterList = utils.getNodeXml(xml, "parameter-list", false)
                                execution.setVariable("FH_parameterList", parameterList)
                        }
-
+       
                        utils.log("DEBUG","FH_notification-url-Ok --> " + execution.getVariable("FH_notification-url-Ok"),isDebugLogEnabled)
                        utils.log("DEBUG","FH_request_id-OK --> " + execution.getVariable("FH_request_id-Ok"),isDebugLogEnabled)
-
+       
+                       // set the DHV/Service Instantiation values if specified in the request
+                       execution.setVariable("FH_is_srv_inst_req", String.valueOf("true".equals(utils.getNodeText1(xml, "is-srv-inst-req"))))
+                       utils.log("DEBUG", "FH_is_srv_inst_req --> " + execution.getVariable("FH_is_srv_inst_req"), isDebugLogEnabled)
+                       execution.setVariable("FH_is_json_content", String.valueOf("JSON".equals(utils.getNodeText1(xml, "resp-content-type"))))
+                       utils.log("DEBUG", "FH_is_json_content --> " + execution.getVariable("FH_is_json_content"), isDebugLogEnabled)
+                       execution.setVariable("FH_service_inst_id", utils.getNodeText1(xml, "service-instance-id"))
+                       utils.log("DEBUG", "FH_service_inst_id --> " + execution.getVariable("FH_service_inst_id"), isDebugLogEnabled)
+                       execution.setVariable("FH_start_time", utils.getNodeText1(xml, "start-time"))
+                       utils.log("DEBUG", "FH_start_time --> " + execution.getVariable("FH_start_time"), isDebugLogEnabled)
+                       // this variable is used by the camunda flow to set the Content-Type for the async response
+                       if (execution.getVariable("FH_is_srv_inst_req").equals("true") &&
+                               execution.getVariable("FH_is_json_content").equals("true")) {
+                               execution.setVariable("FH_content_type", "application/json")
+                       } else {
+                               execution.setVariable("FH_content_type", "text/xml")
+                       }
                } catch (Exception e) {
                        logError('Caught exception in ' + method, e)
-                       exceptionUtil.buildWorkflowException(execution, 2000, "Internal Error - Occured in" + method)
+               //      exceptionUtil.buildWorkflowException(execution, 2000, "Internal Error - Occured in" + method)
                }
-
+       
                utils.log("DEBUG","OUTOF --> Initialize Variables Fallout Handler #########",isDebugLogEnabled);
        }
-
+       
        public String updateRequestPayload (Execution execution){
                def method = getClass().getSimpleName() + '.updateRequestPayload(' +'execution=' + execution.getId() +')'
                def isDebugLogEnabled = execution.getVariable('isDebugLogEnabled')
                logDebug('Entered ' + method, isDebugLogEnabled)
-
+       
                try {
                        String payload = """
-                               <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:req="http://com.att.mso/requestsdb">
-                               <soapenv:Header/>
-                               <soapenv:Body>
-                                       <req:updateRequest>
-                                               <requestId>${execution.getVariable("FH_request_id")}</requestId>
-                                               <lastModifiedBy>BPEL</lastModifiedBy>
-                                               <finalErrorMessage>${execution.getVariable("FH_ErrorMessage")}</finalErrorMessage>
-                                               <finalErrorCode>${execution.getVariable("FH_ErrorCode")}</finalErrorCode>
-                                               <status>FAILED</status>
-                                               <responseStatus>${execution.getVariable("FH_NOTIFY_STATUS")}</responseStatus>
-                                       </req:updateRequest>
-                               </soapenv:Body>
-                               </soapenv:Envelope>
-                       """
-
+                                       <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:req="http://org.openecomp.mso/requestsdb">
+                                       <soapenv:Header/>
+                                       <soapenv:Body>
+                                               <req:updateRequest>
+                                                       <requestId>${execution.getVariable("FH_request_id")}</requestId>
+                                                       <lastModifiedBy>BPEL</lastModifiedBy>
+                                                       <finalErrorMessage>${execution.getVariable("FH_ErrorMessage")}</finalErrorMessage>
+                                                       <finalErrorCode>${execution.getVariable("FH_ErrorCode")}</finalErrorCode>
+                                                       <status>FAILED</status>
+                                                       <responseStatus>${execution.getVariable("FH_NOTIFY_STATUS")}</responseStatus>
+                                               </req:updateRequest>
+                                       </soapenv:Body>
+                                       </soapenv:Envelope>
+                               """
+       
                        utils.logAudit("updateRequestPayload: " + payload)
                        execution.setVariable("FH_updateRequestPayload", payload)
                        return execution.getVariable("FH_updateRequestPayload")
                } catch (Exception e) {
                        logError('Caught exception in ' + method, e)
-                       exceptionUtil.buildWorkflowException(execution, 2000, "Internal Error - Occured in " + method)
+               //      exceptionUtil.buildWorkflowException(execution, 2000, "Internal Error - Occured in " + method)
                }
        }
-
+       
        public String updateRequestInfraPayload (Execution execution){
                def method = getClass().getSimpleName() + '.updateRequestInfraPayload(' +'execution=' + execution.getId() +')'
                def isDebugLogEnabled = execution.getVariable('isDebugLogEnabled')
                logDebug('Entered ' + method, isDebugLogEnabled)
-
+       
                try {
                        String payload = """
-                               <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:req="http://com.att.mso/requestsdb">
-                               <soapenv:Header/>
-                               <soapenv:Body>
-                                       <req:updateInfraRequest>
-                                               <requestId>${execution.getVariable("FH_request_id")}</requestId>
-                                               <lastModifiedBy>BPEL</lastModifiedBy>
-                                               <statusMessage>${execution.getVariable("FH_ErrorMessage")}</statusMessage>
-                                               <requestStatus>FAILED</requestStatus>
-                                               <progress>100</progress>
-                                       </req:updateInfraRequest>
-                               </soapenv:Body>
-                               </soapenv:Envelope>
-                       """
-
+                                       <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:req="http://org.openecomp.mso/requestsdb">
+                                       <soapenv:Header/>
+                                       <soapenv:Body>
+                                               <req:updateInfraRequest>
+                                                       <requestId>${execution.getVariable("FH_request_id")}</requestId>
+                                                       <lastModifiedBy>BPEL</lastModifiedBy>
+                                                       <statusMessage>${execution.getVariable("FH_ErrorMessage")}</statusMessage>
+                                                       <requestStatus>FAILED</requestStatus>
+                                                       <progress>100</progress>
+                                               </req:updateInfraRequest>
+                                       </soapenv:Body>
+                                       </soapenv:Envelope>
+                               """
+       
                        execution.setVariable("FH_updateRequestInfraPayload", payload)
                        utils.logAudit("updateRequestInfraPayload: " + payload)
                        return execution.getVariable("FH_updateRequestInfraPayload")
                } catch (Exception e) {
                        logError('Caught exception in ' + method, e)
-                       exceptionUtil.buildWorkflowException(execution, 2000, "Internal Error - Occured in " + method)
+               //      exceptionUtil.buildWorkflowException(execution, 2000, "Internal Error - Occured in " + method)
                }
        }
-
+       
        public String updateRequestGammaPayload (Execution execution){
                def method = getClass().getSimpleName() + '.updateRequestGammaPayload(' +'execution=' + execution.getId() +')'
                def isDebugLogEnabled = execution.getVariable('isDebugLogEnabled')
                logDebug('Entered ' + method, isDebugLogEnabled)
-
+       
                try {
                        String payload = """
-                               <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:req="http://com.att.mso/requestsdb">
-                               <soapenv:Header/>
-                               <soapenv:Body>
-                                       <req:updateRequest>
-                                               <requestId>${execution.getVariable("FH_request_id")}</requestId>
-                                               <lastModifiedBy>BPEL</lastModifiedBy>
-                                               <finalErrorMessage>${execution.getVariable("FH_ErrorMessage")}</finalErrorMessage>
-                                               <finalErrorCode>${execution.getVariable("FH_ErrorCode")}</finalErrorCode>
-                                               <status>FAILED</status>
-                                       </req:updateRequest>
-                               </soapenv:Body>
-                               </soapenv:Envelope>
-                       """
-
+                                       <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:req="http://org.openecomp.mso/requestsdb">
+                                       <soapenv:Header/>
+                                       <soapenv:Body>
+                                               <req:updateRequest>
+                                                       <requestId>${execution.getVariable("FH_request_id")}</requestId>
+                                                       <lastModifiedBy>BPEL</lastModifiedBy>
+                                                       <finalErrorMessage>${execution.getVariable("FH_ErrorMessage")}</finalErrorMessage>
+                                                       <finalErrorCode>${execution.getVariable("FH_ErrorCode")}</finalErrorCode>
+                                                       <status>FAILED</status>
+                                               </req:updateRequest>
+                                       </soapenv:Body>
+                                       </soapenv:Envelope>
+                               """
+       
                        execution.setVariable("FH_updateRequestGammaPayload", payload)
                        utils.logAudit("updateRequestGammaPayload: " + payload)
                        return execution.getVariable("FH_updateRequestGammaPayload")
                } catch (Exception e) {
                        logError('Caught exception in ' + method, e)
-                       exceptionUtil.buildWorkflowException(execution, 2000, "Internal Error - Occured in " + method)
+               //      exceptionUtil.buildWorkflowException(execution, 2000, "Internal Error - Occured in " + method)
                }
        }
-
+       
        public String updateResponseStatusPayload (Execution execution){
                def method = getClass().getSimpleName() + '.updateResponseStatusPayload(' +'execution=' + execution.getId() +')'
                def isDebugLogEnabled = execution.getVariable('isDebugLogEnabled')
                logDebug('Entered ' + method, isDebugLogEnabled)
-
+       
                try {
                        String payload = """
-                               <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:req="http://com.att.mso/requestsdb">
-                               <soapenv:Header/>
-                               <soapenv:Body>
-                                       <req:updateResponseStatus>
-                                               <requestId>${execution.getVariable("FH_request_id")}</requestId>
-                                               <lastModifiedBy>BPEL</lastModifiedBy>
-                                               <responseStatus>SENDING_FINAL_NOTIFY</responseStatus>
-                                       </req:updateResponseStatus>
-                               </soapenv:Body>
-                               </soapenv:Envelope>
-                       """
-
+                                       <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:req="http://org.openecomp.mso/requestsdb">
+                                       <soapenv:Header/>
+                                       <soapenv:Body>
+                                               <req:updateResponseStatus>
+                                                       <requestId>${execution.getVariable("FH_request_id")}</requestId>
+                                                       <lastModifiedBy>BPEL</lastModifiedBy>
+                                                       <responseStatus>SENDING_FINAL_NOTIFY</responseStatus>
+                                               </req:updateResponseStatus>
+                                       </soapenv:Body>
+                                       </soapenv:Envelope>
+                               """
+       
                        execution.setVariable("FH_updateResponseStatusPayload", payload)
                        utils.logAudit("updateResponseStatusPayload: " + payload)
                        return execution.getVariable("FH_updateResponseStatusPayload")
                } catch (Exception e) {
                        logError('Caught exception in ' + method, e)
-                       exceptionUtil.buildWorkflowException(execution, 2000, "Internal Error - Occured in " + method)
-               }
-       }
-
-       public String notifyCSIPayload (Execution execution) {
-               return "";
-       }
-
-       public String notifyCCDFailurePayload (Execution execution) {
-               def method = getClass().getSimpleName() + '.notifyCCDFailurePayload(' +'execution=' + execution.getId() +')'
-               def isDebugLogEnabled = execution.getVariable('isDebugLogEnabled')
-               logDebug('Entered ' + method, isDebugLogEnabled)
-
-               try {
-                       def parameterList = execution.getVariable('FH_parameterList')
-                       String payload ="""
-                               <ns:status-notification xmlns:ns="http://ecomp.att.com/mso/statusnotification/schema/v1" xmlns:msoservtypes="http://ecomp.att.com/mso/request/types/v1">
-                                       <msoservtypes:request-id>${execution.getVariable("FH_request_id")}</msoservtypes:request-id>
-                                       <msoservtypes:request-action>${execution.getVariable("FH_request_action")}</msoservtypes:request-action>
-                                       <msoservtypes:source>${execution.getVariable("FH_source")}</msoservtypes:source>
-                                       <msoservtypes:error-code>${execution.getVariable("FH_ErrorCode")}</msoservtypes:error-code>
-                                       <msoservtypes:error-message>${execution.getVariable("FH_ErrorMessage")}</msoservtypes:error-message>
-                                       <msoservtypes:ack-final-indicator>Y</msoservtypes:ack-final-indicator>
-                                       ${parameterList}
-                               </ns:status-notification>
-                       """
-
-                       payload = utils.formatXml(payload)
-                       utils.logAudit("notifyCCDFailurePayload: " + payload)
-
-                       execution.setVariable("FH_notifyCCDFailurePayload", payload)
-                       utils.log("DEBUG", "FH_notifyCCDFailurePayload --> " + "\n" + execution.getVariable("FH_notifyCCDFailurePayload"), isDebugLogEnabled)
-                       return execution.getVariable("FH_notifyCCDFailurePayload")
-               } catch (Exception e) {
-                       logError('Caught exception in ' + method, e)
-                       exceptionUtil.buildWorkflowException(execution, 2000, "Internal Error - Occured in " + method)
+               //      exceptionUtil.buildWorkflowException(execution, 2000, "Internal Error - Occured in " + method)
                }
        }
-
+       
        public void buildDBWorkflowException(Execution execution, String responseCodeVariable) {
                def method = getClass().getSimpleName() + '.buildDBWorkflowException(' +
                        'execution=' + execution.getId() +
                        ', responseCodeVariable=' + responseCodeVariable + ')'
                def isDebugLogEnabled = execution.getVariable('isDebugLogEnabled')
                logDebug('Entered ' + method, isDebugLogEnabled)
-
+       
                try {
                        def responseCode = execution.getVariable(responseCodeVariable)
                        // If the HTTP response code was null, it means a connection fault occurred (a java exception)
                        def errorMessage = responseCode == null ? "Could not connect to DB Adapter" : "DB Adapter returned ${responseCode} response"
                        def errorCode = responseCode == null ? 7000 : 7020
-                       exceptionUtil.buildWorkflowException(execution, errorCode, errorMessage)
+               //      exceptionUtil.buildWorkflowException(execution, errorCode, errorMessage)
                } catch (Exception e) {
                        logError('Caught exception in ' + method, e)
-                       exceptionUtil.buildWorkflowException(execution, 2000, "Internal Error - Occured in " + method)
+               //      exceptionUtil.buildWorkflowException(execution, 2000, "Internal Error - Occured in " + method)
                }
        }
-
+       
        /**
         * Used to create a workflow response in success and failure cases.
         */
@@ -374,29 +362,29 @@ public class FalloutHandler extends AbstractServiceTaskProcessor {
                def method = getClass().getSimpleName() + '.postProcessResponse(' +'execution=' + execution.getId() +')'
                def isDebugLogEnabled = execution.getVariable('isDebugLogEnabled')
                logDebug('Entered ' + method, isDebugLogEnabled)
-
+       
                try {
                        Boolean success = (Boolean) execution.getVariable("FH_success")
                        String out = success ? "Fallout Handler Succeeded" : "Fallout Handler Failed";
-
+       
                        def falloutHandlerResponse = """
-                               <workflow:FalloutHandlerResponse xmlns:workflow="http://ecomp.att.com/mso/workflow/schema/v1">
-                                  <workflow:out>${out}</workflow:out>
-                               </workflow:FalloutHandlerResponse>
-                       """
-
+                                       <workflow:FalloutHandlerResponse xmlns:workflow="http://org.openecomp/mso/workflow/schema/v1">
+                                          <workflow:out>${out}</workflow:out>
+                                       </workflow:FalloutHandlerResponse>
+                               """
+       
                        falloutHandlerResponse = utils.formatXml(falloutHandlerResponse)
                        utils.logAudit("FalloutHandler Response: " + falloutHandlerResponse);
-
+       
                        execution.setVariable("FalloutHandlerResponse", falloutHandlerResponse)
                        execution.setVariable("WorkflowResponse", falloutHandlerResponse)
                        execution.setVariable("FH_ResponseCode", success ? "200" : "500")
                        setSuccessIndicator(execution, success)
-
+       
                        logDebug("FalloutHandlerResponse =\n" + falloutHandlerResponse, isDebugLogEnabled)
                } catch (Exception e) {
                        // Do NOT throw WorkflowException!
                        logError('Caught exception in ' + method, e)
                }
        }
-}
+}
\ No newline at end of file