Renaming Files having BluePrint to have Blueprint
[ccsdk/cds.git] / ms / blueprintsprocessor / functions / k8s-profile-upload / src / main / kotlin / org / onap / ccsdk / cds / blueprintsprocessor / functions / k8s / profile / upload / K8sProfileUploadConfiguration.kt
1 /*
2  *  Copyright © 2020 Deutsche Telekom AG.
3  *  Modifications Copyright © 2020 Orange.
4  *
5  *  Licensed under the Apache License, Version 2.0 (the "License");
6  *  you may not use this file except in compliance with the License.
7  *  You may obtain a copy of the License at
8  *
9  *      http://www.apache.org/licenses/LICENSE-2.0
10  *
11  *  Unless required by applicable law or agreed to in writing, software
12  *  distributed under the License is distributed on an "AS IS" BASIS,
13  *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  *  See the License for the specific language governing permissions and
15  *  limitations under the License.
16  */
17
18 package org.onap.ccsdk.cds.blueprintsprocessor.functions.k8s.profile.upload
19
20 import org.onap.ccsdk.cds.blueprintsprocessor.core.BlueprintCoreConfiguration
21 import org.onap.ccsdk.cds.blueprintsprocessor.core.BlueprintPropertiesService
22 import org.onap.ccsdk.cds.blueprintsprocessor.core.BlueprintPropertyConfiguration
23 import org.springframework.boot.context.properties.EnableConfigurationProperties
24 import org.springframework.context.annotation.Bean
25 import org.springframework.context.annotation.Configuration
26 import org.springframework.context.annotation.Import
27
28 @Configuration
29 @Import(
30     BlueprintPropertyConfiguration::class,
31     BlueprintPropertiesService::class,
32     BlueprintCoreConfiguration::class
33 )
34 @EnableConfigurationProperties
35 open class K8sProfileUploadConfiguration(private var bluePrintPropertiesService: BlueprintPropertiesService) {
36
37     @Bean("k8s-plugin-properties")
38     open fun getProperties(): K8sProfileUploadProperties {
39         return bluePrintPropertiesService.propertyBeanType(
40             K8sProfileUploadConstants.PREFIX_K8S_PLUGIN,
41             K8sProfileUploadProperties::class.java
42         )
43     }
44 }
45
46 class K8sProfileUploadConstants {
47     companion object {
48
49         const val PREFIX_K8S_PLUGIN: String = "blueprintprocessor.k8s.plugin"
50     }
51 }