blob: a9d4d454ec1c79f5f21f11b1373c9dfbe2cd4b17 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
from org.onap.ccsdk.cds.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
|