Merge "change execution to DelegateExecution in groovy"
diff --git a/bpmn/MSOInfrastructureBPMN/src/main/groovy/org/openecomp/mso/bpmn/infrastructure/scripts/DoCompareModelVersions.groovy b/bpmn/MSOInfrastructureBPMN/src/main/groovy/org/openecomp/mso/bpmn/infrastructure/scripts/DoCompareModelVersions.groovy
index a8af52a..291df46 100644
--- a/bpmn/MSOInfrastructureBPMN/src/main/groovy/org/openecomp/mso/bpmn/infrastructure/scripts/DoCompareModelVersions.groovy
+++ b/bpmn/MSOInfrastructureBPMN/src/main/groovy/org/openecomp/mso/bpmn/infrastructure/scripts/DoCompareModelVersions.groovy
@@ -51,6 +51,7 @@
 

 import org.camunda.bpm.engine.delegate.BpmnError

 import org.camunda.bpm.engine.runtime.Execution

+import org.camunda.bpm.engine.delegate.DelegateExecution

 import org.json.JSONObject;

 import org.json.JSONArray;

 import org.apache.commons.lang3.*

@@ -78,7 +79,7 @@
 	JsonUtils jsonUtil = new JsonUtils()

 	CatalogDbUtils cutils = new CatalogDbUtils()

 

-	public void preProcessRequest (Execution execution) {

+	public void preProcessRequest (DelegateExecution execution) {

 		def isDebugEnabled = execution.getVariable("isDebugLogEnabled")

 		String msg = ""

 		utils.log("INFO"," ***** preProcessRequest *****",  isDebugEnabled)