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


class AbstractPythonComponentFunction(AbstractComponentFunction):

    def __init__(self):
        AbstractComponentFunction.__init__(self)

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

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