aboutsummaryrefslogtreecommitdiffstats
path: root/components/scripts/python/ccsdk_blueprints/abstract_ra_processor.py
diff options
context:
space:
mode:
Diffstat (limited to 'components/scripts/python/ccsdk_blueprints/abstract_ra_processor.py')
-rw-r--r--components/scripts/python/ccsdk_blueprints/abstract_ra_processor.py29
1 files changed, 0 insertions, 29 deletions
diff --git a/components/scripts/python/ccsdk_blueprints/abstract_ra_processor.py b/components/scripts/python/ccsdk_blueprints/abstract_ra_processor.py
deleted file mode 100644
index 6489b1e7..00000000
--- a/components/scripts/python/ccsdk_blueprints/abstract_ra_processor.py
+++ /dev/null
@@ -1,29 +0,0 @@
-from org.onap.ccsdk.apps.blueprintsprocessor.functions.resource.resolution.processor import \
- ResourceAssignmentProcessor
-from org.onap.ccsdk.apps.blueprintsprocessor.functions.resource.resolution.utils import \
- ResourceAssignmentUtils
-from org.onap.ccsdk.apps.controllerblueprints.core import \
- BluePrintProcessorException
-
-
-class AbstractRAProcessor(ResourceAssignmentProcessor):
-
- def process(self, resource_assignment):
- print "Processing.."
- return None
-
- def recover(self, runtime_exception, resource_assignment):
- print "Recovering.."
- return None
-
- def set_resource_data_value(self, resource_assignment, value):
- try:
- if value is not None:
- ResourceAssignmentUtils.Companion.setResourceDataValue(
- resource_assignment, self.raRuntimeService, value)
- else:
- ResourceAssignmentUtils.Companion.setFailedResourceDataValue(
- resource_assignment, "Fail to resolve value")
- except BluePrintProcessorException, err:
- raise BluePrintProcessorException(
- "Error on resource assignment. Message = " + err.message)