Merge "Reorder modifiers"
[so.git] / bpmn / MSOCommonBPMN / src / main / groovy / org / openecomp / mso / bpmn / common / scripts / PrepareUpdateAAIVfModule.groovy
index 95f129b..bbdaab1 100644 (file)
@@ -21,7 +21,7 @@
 package org.openecomp.mso.bpmn.common.scripts\r
 \r
 import org.camunda.bpm.engine.delegate.BpmnError\r
-import org.camunda.bpm.engine.runtime.Execution\r
+import org.camunda.bpm.engine.delegate.DelegateExecution\r
 import org.openecomp.mso.bpmn.core.WorkflowException\r
 import org.openecomp.mso.rest.APIResponse\r
 import org.openecomp.mso.rest.RESTClient\r
@@ -37,7 +37,7 @@ public class PrepareUpdateAAIVfModule extends VfModuleBase {
         * \r
         * @param execution The flow's execution instance.\r
         */\r
-       public void initProcessVariables(Execution execution) {\r
+       public void initProcessVariables(DelegateExecution execution) {\r
                execution.setVariable('prefix', 'PUAAIVfMod_')\r
                execution.setVariable('PUAAIVfMod_vnfId', null)\r
                execution.setVariable('PUAAIVfMod_vfModuleId', null)\r
@@ -58,7 +58,7 @@ public class PrepareUpdateAAIVfModule extends VfModuleBase {
         * \r
         * @param execution The flow's execution instance.\r
         */\r
-       public void preProcessRequest(Execution execution) {\r
+       public void preProcessRequest(DelegateExecution execution) {\r
                def method = getClass().getSimpleName() + '.preProcessRequest(' +\r
                        'execution=' + execution.getId() +\r
                        ')'\r
@@ -96,7 +96,7 @@ public class PrepareUpdateAAIVfModule extends VfModuleBase {
         * \r
         * @param execution The flow's execution instance.\r
         */\r
-       public void getGenericVnf(Execution execution) {\r
+       public void getGenericVnf(DelegateExecution execution) {\r
                def method = getClass().getSimpleName() + '.getGenericVnf(' +\r
                        'execution=' + execution.getId() +\r
                        ')'\r
@@ -162,7 +162,7 @@ public class PrepareUpdateAAIVfModule extends VfModuleBase {
         * \r
         * @param execution The flow's execution instance.\r
         */\r
-       public void validateVfModule(Execution execution) {\r
+       public void validateVfModule(DelegateExecution execution) {\r
                def method = getClass().getSimpleName() + '.validateVfModule(' +\r
                        'execution=' + execution.getId() +\r
                        ')'\r
@@ -212,7 +212,7 @@ public class PrepareUpdateAAIVfModule extends VfModuleBase {
         * \r
         * @param execution The flow's execution instance.\r
         */\r
-       public void updateVfModule(Execution execution) {\r
+       public void updateVfModule(DelegateExecution execution) {\r
                def method = getClass().getSimpleName() + '.updateVfModule(' +\r
                        'execution=' + execution.getId() +\r
                        ')'\r
@@ -309,7 +309,7 @@ public class PrepareUpdateAAIVfModule extends VfModuleBase {
         * \r
         * @param execution The flow's execution instance.\r
         */\r
-       public void handleVnfNotFound(Execution execution) {\r
+       public void handleVnfNotFound(DelegateExecution execution) {\r
                def method = getClass().getSimpleName() + '.handleVnfNotFound(' +\r
                        'execution=' + execution.getId() +\r
                        ')'\r
@@ -332,7 +332,7 @@ public class PrepareUpdateAAIVfModule extends VfModuleBase {
         * \r
         * @param execution The flow's execution instance.\r
         */\r
-       public void handleVfModuleValidationError(Execution execution) {\r
+       public void handleVfModuleValidationError(DelegateExecution execution) {\r
                def method = getClass().getSimpleName() + '.handleVfModuleValidationError(' +\r
                        'execution=' + execution.getId() +\r
                        ')'\r
@@ -355,7 +355,7 @@ public class PrepareUpdateAAIVfModule extends VfModuleBase {
         * \r
         * @param execution The flow's execution instance.\r
         */\r
-       public void handleUpdateVfModuleFailure(Execution execution) {\r
+       public void handleUpdateVfModuleFailure(DelegateExecution execution) {\r
                def method = getClass().getSimpleName() + '.handleUpdateVfModuleFailure(' +\r
                        'execution=' + execution.getId() +\r
                        ')'\r