ad2057f321c6a2f809307618c7535d82f04f05be
[ccsdk/cds.git] / components / scripts / python / ccsdk_netconf / common.py
1 #  Copyright (c) 2019 Bell Canada.
2 #  Modifications Copyright © 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
16 class ResolutionHelper:
17
18   def __init__(self, component_function):
19     self.component_function = component_function
20
21   def resolve_and_generate_message_from_template_prefix(self, artifact_prefix):
22     return self.component_function.contentFromResolvedArtifact(artifact_prefix)
23
24   def resolve_and_generate_message(self, artifact_mapping, artifact_template):
25     return self.component_function.resolveAndGenerateMessage(artifact_mapping,
26                                                              artifact_template)
27
28   def retrieve_resolved_template_from_database(self, key, artifact_template):
29     return self.component_function.storedContentFromResolvedArtifact(key, artifact_template)