1 from abstract_blueprint_function import AbstractPythonComponentFunction
2 from blueprint_constants import *
5 class SamplePythonComponentNode(AbstractPythonComponentFunction):
8 AbstractPythonComponentFunction.__init__(self)
10 def process(self, execution_request):
11 AbstractPythonComponentFunction.process(self, execution_request)
12 print "Processing calling..." + PROPERTY_BLUEPRINT_BASE_PATH
15 def recover(self, runtime_exception, execution_request):
16 AbstractPythonComponentFunction.recover(self, runtime_exception, execution_request)
17 print "Recovering calling..." + PROPERTY_BLUEPRINT_BASE_PATH