Removed redundant timeout handling for executeCommand
[ccsdk/cds.git] / ms / blueprintsprocessor / modules / inbounds / designer-api / src / main / kotlin / org / onap / ccsdk / cds / blueprintsprocessor / designer / api / enhancer / BluePrintAttributeDefinitionEnhancerImpl.kt
1 /*
2  * Copyright © 2017-2018 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.BluePrintException
21 import org.onap.ccsdk.cds.controllerblueprints.core.BluePrintTypes
22 import org.onap.ccsdk.cds.controllerblueprints.core.data.AttributeDefinition
23 import org.onap.ccsdk.cds.controllerblueprints.core.interfaces.BluePrintAttributeDefinitionEnhancer
24 import org.onap.ccsdk.cds.controllerblueprints.core.interfaces.BluePrintRepoService
25 import org.onap.ccsdk.cds.controllerblueprints.core.interfaces.BluePrintTypeEnhancerService
26 import org.onap.ccsdk.cds.controllerblueprints.core.service.BluePrintContext
27 import org.onap.ccsdk.cds.controllerblueprints.core.service.BluePrintRuntimeService
28
29 class BluePrintAttributeDefinitionEnhancerImpl(
30     private val bluePrintRepoService: BluePrintRepoService,
31     private val bluePrintTypeEnhancerService: BluePrintTypeEnhancerService
32 ) :
33     BluePrintAttributeDefinitionEnhancer {
34
35     lateinit var bluePrintRuntimeService: BluePrintRuntimeService<*>
36     lateinit var bluePrintContext: BluePrintContext
37
38     override fun enhance(bluePrintRuntimeService: BluePrintRuntimeService<*>, name: String, attributeDefinition: AttributeDefinition) {
39         this.bluePrintRuntimeService = bluePrintRuntimeService
40         this.bluePrintContext = bluePrintRuntimeService.bluePrintContext()
41
42         val propertyType = attributeDefinition.type
43         if (BluePrintTypes.validPrimitiveTypes().contains(propertyType)) {
44         } else if (BluePrintTypes.validCollectionTypes().contains(propertyType)) {
45             val entrySchema = attributeDefinition.entrySchema
46                 ?: throw BluePrintException("Entry Schema is missing for collection property($name)")
47
48             if (!BluePrintTypes.validPrimitiveTypes().contains(entrySchema.type)) {
49                 BluePrintEnhancerUtils.populateDataTypes(bluePrintContext, bluePrintRepoService, entrySchema.type)
50             }
51         } else {
52             BluePrintEnhancerUtils.populateDataTypes(bluePrintContext, bluePrintRepoService, propertyType)
53         }
54     }
55 }