Jython execution component and service
[ccsdk/cds.git] / components / scripts / python / ccsdk_blueprints / sample_ra_processor_function.py
1 from abstract_ra_processor import AbstractRAProcessor
2
3
4 class SampleRAProcessorFunction(AbstractRAProcessor):
5
6     def process(self, execution_request):
7         print "Processing calling.."
8         return None
9
10     def recover(self, runtime_exception, execution_request):
11         print "Recovering calling.."
12         return None