diff options
author | Dan Timoney <dtimoney@att.com> | 2019-02-15 21:25:27 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2019-02-15 21:25:27 +0000 |
commit | b1a59abb5c37f0bf439bfc14fd5bdf27881784f5 (patch) | |
tree | 8b2fdfa1ad993f4fc20c746aa2e01eb18fa3316c /ms/blueprintsprocessor/functions/resource-resolution/src/test/resources/python | |
parent | 01174642f5c1a9b688e4d6713b3950642fc77836 (diff) | |
parent | cfc807955c9cae60bce983e4f4ac951bf37ecc20 (diff) |
Merge "Python library for Jython execution"
Diffstat (limited to 'ms/blueprintsprocessor/functions/resource-resolution/src/test/resources/python')
-rw-r--r-- | ms/blueprintsprocessor/functions/resource-resolution/src/test/resources/python/SampleResourceAssignmentProcessorScript.py | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/ms/blueprintsprocessor/functions/resource-resolution/src/test/resources/python/SampleResourceAssignmentProcessorScript.py b/ms/blueprintsprocessor/functions/resource-resolution/src/test/resources/python/SampleResourceAssignmentProcessorScript.py deleted file mode 100644 index bcf450e8..00000000 --- a/ms/blueprintsprocessor/functions/resource-resolution/src/test/resources/python/SampleResourceAssignmentProcessorScript.py +++ /dev/null @@ -1,13 +0,0 @@ -from resource_assignment_processor_function import AbstractJythonComponentFunction -from blueprint_constants import * - - -class SampleJythonComponentNode(AbstractJythonComponentFunction): - - def process(self, execution_request): - print "Processing calling.." + PROPERTY_BLUEPRINT_BASE_PATH - return None - - def recover(self, runtime_exception, execution_request): - print "Recovering calling.." + PROPERTY_BLUEPRINT_BASE_PATH - return None |