Migrate ccsdk/apps to ccsdk/cds
[ccsdk/cds.git] / components / scripts / python / ccsdk_blueprints / abstract_blueprint_function.py
1 from org.onap.ccsdk.cds.blueprintsprocessor.services.execution import AbstractComponentFunction
2
3
4 class AbstractPythonComponentFunction(AbstractComponentFunction):
5
6     def __init__(self):
7         AbstractComponentFunction.__init__(self)
8
9     def process(self, execution_request):
10         print "Processing calling from parent..."
11         return None
12
13     def recover(self, runtime_exception, execution_request):
14         print "Recovering calling from parent..."
15         return None