aboutsummaryrefslogtreecommitdiffstats
path: root/components/scripts/python/ccsdk_blueprints/abstract_blueprint_function.py
diff options
context:
space:
mode:
Diffstat (limited to 'components/scripts/python/ccsdk_blueprints/abstract_blueprint_function.py')
-rw-r--r--components/scripts/python/ccsdk_blueprints/abstract_blueprint_function.py15
1 files changed, 0 insertions, 15 deletions
diff --git a/components/scripts/python/ccsdk_blueprints/abstract_blueprint_function.py b/components/scripts/python/ccsdk_blueprints/abstract_blueprint_function.py
deleted file mode 100644
index 1ffa75d4..00000000
--- a/components/scripts/python/ccsdk_blueprints/abstract_blueprint_function.py
+++ /dev/null
@@ -1,15 +0,0 @@
-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