aboutsummaryrefslogtreecommitdiffstats
path: root/ms/blueprintsprocessor/functions/python-executor/src/test/resources/PythonTestScript.py
blob: 42b611b886b45e31d5cadb92a257c6ff98360e1c (plain)
1
2
3
4
5
6
7
8
9
class PythonTestScript():

    def process(self, execution_request):
        print "Processing calling..." + PROPERTY_BLUEPRINT_BASE_PATH
        return None

    def recover(self, runtime_exception, execution_request):
        print "Recovering calling..." + PROPERTY_BLUEPRINT_BASE_PATH
        return None