bcf450e81bf8e57190624061bb310e391af1c480
[ccsdk/cds.git] /
1 from resource_assignment_processor_function import AbstractJythonComponentFunction
2 from blueprint_constants import *
3
4
5 class SampleJythonComponentNode(AbstractJythonComponentFunction):
6
7     def process(self, execution_request):
8         print "Processing calling.." + PROPERTY_BLUEPRINT_BASE_PATH
9         return None
10
11     def recover(self, runtime_exception, execution_request):
12         print "Recovering calling.." + PROPERTY_BLUEPRINT_BASE_PATH
13         return None