2 * Copyright © 2018 IBM.
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
8 * http://www.apache.org/licenses/LICENSE-2.0
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.
16 @file:Suppress("unused")
18 package org.onap.ccsdk.apps.blueprintsprocessor.functions.restconf.executor
20 import com.fasterxml.jackson.databind.JsonNode
21 import org.onap.ccsdk.apps.blueprintsprocessor.functions.resource.resolution.ResourceResolutionConstants
22 import org.onap.ccsdk.apps.blueprintsprocessor.functions.resource.resolution.ResourceResolutionService
23 import org.onap.ccsdk.apps.blueprintsprocessor.rest.RestLibConstants
24 import org.onap.ccsdk.apps.blueprintsprocessor.rest.service.BluePrintRestLibPropertyService
25 import org.onap.ccsdk.apps.blueprintsprocessor.rest.service.BlueprintWebClientService
26 import org.onap.ccsdk.apps.blueprintsprocessor.services.execution.AbstractComponentFunction
29 abstract class RestconfComponentFunction : AbstractComponentFunction() {
31 open fun bluePrintRestLibPropertyService(): BluePrintRestLibPropertyService =
32 functionDependencyInstanceAsType(RestLibConstants.SERVICE_BLUEPRINT_REST_LIB_PROPERTY)
34 open fun resourceResolutionService(): ResourceResolutionService =
35 functionDependencyInstanceAsType(ResourceResolutionConstants.SERVICE_RESOURCE_RESOLUTION)
38 fun restClientService(selector: String): BlueprintWebClientService {
39 return bluePrintRestLibPropertyService().blueprintWebClientService(selector)
42 fun getDynamicProperties(key: String): JsonNode {
43 return operationInputs["dynamic-properties"]!!.get(key)
46 fun resolveFromDatabase(resolutionKey: String, artifactName: String): String {
47 return resourceResolutionService().resolveFromDatabase(bluePrintRuntimeService, artifactName, resolutionKey)
50 fun generateMessage(artifactName: String): String {
51 return bluePrintRuntimeService.resolveNodeTemplateArtifact(nodeTemplateName, artifactName)
54 fun resolveAndGenerateMessage(artifactMapping: String, artifactTemplate: String): String {
55 return resourceResolutionService().resolveResources(bluePrintRuntimeService, nodeTemplateName,
56 artifactMapping, artifactTemplate)
59 fun resolveAndGenerateMessage(artifactPrefix: String): String {
60 return resourceResolutionService().resolveResources(bluePrintRuntimeService, nodeTemplateName,
61 artifactPrefix, mapOf())