Refactor Netconf script component parent.
[ccsdk/cds.git] / components / scripts / python / ccsdk_netconf / common.py
1 #  Copyright (c) 2019 Bell Canada.
2 #  Modifications Copyright (c) 2018 - 2019 IBM, Bell Canada.
3 #
4 #  Licensed under the Apache License, Version 2.0 (the "License");
5 #  you may not use this file except in compliance with the License.
6 #  You may obtain a copy of the License at
7 #
8 #      http://www.apache.org/licenses/LICENSE-2.0
9 #
10 #  Unless required by applicable law or agreed to in writing, software
11 #  distributed under the License is distributed on an "AS IS" BASIS,
12 #  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 #  See the License for the specific language governing permissions and
14 #  limitations under the License.
15 from org.onap.ccsdk.cds.blueprintsprocessor.functions.resource.resolution import ResourceResolutionExtensionsKt
16
17
18 class ResolutionHelper:
19
20     def __init__(self, component_function):
21         self.component_function = component_function
22
23     def resolve_and_generate_message_from_template_prefix(self, artifact_prefix):
24         return ResourceResolutionExtensionsKt.contentFromResolvedArtifact(self.component_function, artifact_prefix)
25
26     def retrieve_resolved_template_from_database(self, key, artifact_template):
27         return ResourceResolutionExtensionsKt.storedContentFromResolvedArtifact(self.component_function, key,
28                                                                                 artifact_template)