Fixing Blueprint Typo's and docs
[ccsdk/cds.git] / ms / blueprintsprocessor / modules / inbounds / designer-api / src / main / kotlin / org / onap / ccsdk / cds / blueprintsprocessor / designer / api / enhancer / BlueprintRelationshipTemplateEnhancerImpl.kt
1 /*
2  * Copyright © 2018-2019 AT&T Intellectual Property.
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
17 package org.onap.ccsdk.cds.blueprintsprocessor.designer.api.enhancer
18
19 import org.onap.ccsdk.cds.blueprintsprocessor.designer.api.utils.BlueprintEnhancerUtils
20 import org.onap.ccsdk.cds.controllerblueprints.core.data.RelationshipTemplate
21 import org.onap.ccsdk.cds.controllerblueprints.core.interfaces.BlueprintRelationshipTemplateEnhancer
22 import org.onap.ccsdk.cds.controllerblueprints.core.interfaces.BlueprintRepoService
23 import org.onap.ccsdk.cds.controllerblueprints.core.interfaces.BlueprintTypeEnhancerService
24 import org.onap.ccsdk.cds.controllerblueprints.core.logger
25 import org.onap.ccsdk.cds.controllerblueprints.core.service.BlueprintContext
26 import org.onap.ccsdk.cds.controllerblueprints.core.service.BlueprintRuntimeService
27 import org.springframework.beans.factory.config.ConfigurableBeanFactory
28 import org.springframework.context.annotation.Scope
29 import org.springframework.stereotype.Service
30
31 @Service
32 @Scope(value = ConfigurableBeanFactory.SCOPE_PROTOTYPE)
33 open class BlueprintRelationshipTemplateEnhancerImpl(
34     private val bluePrintRepoService: BlueprintRepoService,
35     private val bluePrintTypeEnhancerService: BlueprintTypeEnhancerService
36 ) :
37     BlueprintRelationshipTemplateEnhancer {
38
39     private val log = logger(BlueprintRelationshipTemplateEnhancerImpl::class)
40
41     lateinit var bluePrintRuntimeService: BlueprintRuntimeService<*>
42     lateinit var bluePrintContext: BlueprintContext
43
44     override fun enhance(
45         bluePrintRuntimeService: BlueprintRuntimeService<*>,
46         name: String,
47         relationshipTemplate: RelationshipTemplate
48     ) {
49         log.info("***** Enhancing RelationshipTemplate($name)")
50         this.bluePrintRuntimeService = bluePrintRuntimeService
51         this.bluePrintContext = bluePrintRuntimeService.bluePrintContext()
52
53         val relationshipTypeName = relationshipTemplate.type
54         // Get RelationshipType from Repo and Update Service Template
55         val relationshipType =
56             BlueprintEnhancerUtils.populateRelationshipType(
57                 bluePrintContext,
58                 bluePrintRepoService,
59                 relationshipTypeName
60             )
61
62         // Enrich NodeType
63         bluePrintTypeEnhancerService.enhanceRelationshipType(
64             bluePrintRuntimeService,
65             relationshipTypeName,
66             relationshipType
67         )
68     }
69 }