aboutsummaryrefslogtreecommitdiffstats
path: root/components/scripts/python/ccsdk_blueprints/abstract_blueprint_function.py
blob: 0ddab16e7b6ee5786478ea1eedf45806ca8cee80 (plain)
1
2
3
4
5
6
7
8
9
10
11
from org.onap.ccsdk.apps.blueprintsprocessor.services.execution import AbstractComponentFunction

class AbstractPythonComponentFunction(AbstractComponentFunction):

    def process(self, execution_request):
        print "Processing calling.."
        return None

    def recover(self, runtime_exception, execution_request):
        print "Recovering calling.."
        return None