Merge "Added option to disable kotlin script cache"
[ccsdk/cds.git] / ms / blueprintsprocessor / modules / services / execution-service / src / test / resources / PythonTestScript.py
1 class PythonTestScript():
2
3     def process(self, execution_request):
4         print "Processing calling..." + PROPERTY_BLUEPRINT_BASE_PATH
5         return None
6
7     def recover(self, runtime_exception, execution_request):
8         print "Recovering calling..." + PROPERTY_BLUEPRINT_BASE_PATH
9         return None