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