1ee41825dcc3297a4804ae754e31de4ff18e4309
[ccsdk/cds.git] / components / model-catalog / blueprint-model / test-blueprint / capability_python / Scripts / python / SamplePythonComponentNode.py
1 from org.onap.ccsdk.cds.blueprintsprocessor.functions.python.executor import JythonComponentFunction
2 from blueprint_constants import *
3
4
5 class SamplePythonComponentNode(JythonComponentFunction):
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