Convert scripts to python3
[ccsdk/cds.git] / components / scripts / python / ccsdk_blueprints / sample_ra_processor_function.py
index 8f68bfe..5e78981 100644 (file)
@@ -1,12 +1,14 @@
-from abstract_ra_processor import AbstractRAProcessor
+from .abstract_ra_processor import AbstractRAProcessor
+from .blueprint_constants import *
 
 
 class SampleRAProcessorFunction(AbstractRAProcessor):
 
-    def process(self, execution_request):
-        print "Processing calling.."
+    def process(self, resource_assignment):
+        print("Processing calling.." + PROPERTY_BLUEPRINT_BASE_PATH)
+        self.set_resource_data_value(resource_assignment, "")
         return None
 
-    def recover(self, runtime_exception, execution_request):
-        print "Recovering calling.."
+    def recover(self, runtime_exception, resource_assignment):
+        print("Recovering calling.." + PROPERTY_BLUEPRINT_BASE_PATH)
         return None