Renaming Files having BluePrint to have Blueprint
[ccsdk/cds.git] / ms / blueprintsprocessor / modules / commons / ssh-lib / src / main / kotlin / org / onap / ccsdk / cds / blueprintsprocessor / ssh / BlueprintSshLibConfiguration.kt
1 /*
2  *  Copyright © 2019 IBM.
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.ssh
18
19 import com.fasterxml.jackson.databind.JsonNode
20 import org.onap.ccsdk.cds.blueprintsprocessor.ssh.service.BlueprintSshLibPropertyService
21 import org.onap.ccsdk.cds.blueprintsprocessor.ssh.service.BlueprintSshClientService
22 import org.onap.ccsdk.cds.controllerblueprints.core.service.BlueprintDependencyService
23 import org.springframework.boot.context.properties.EnableConfigurationProperties
24 import org.springframework.context.annotation.ComponentScan
25 import org.springframework.context.annotation.Configuration
26
27 @Configuration
28 @ComponentScan
29 @EnableConfigurationProperties
30 open class BlueprintSshLibConfiguration
31
32 /**
33  * Exposed Dependency Service by this SSH Lib Module
34  */
35 fun BlueprintDependencyService.sshLibPropertyService(): BlueprintSshLibPropertyService =
36     instance(SshLibConstants.SERVICE_BLUEPRINT_SSH_LIB_PROPERTY)
37
38 fun BlueprintDependencyService.sshClientService(selector: String): BlueprintSshClientService =
39     sshLibPropertyService().blueprintSshClientService(selector)
40
41 fun BlueprintDependencyService.sshClientService(jsonNode: JsonNode): BlueprintSshClientService =
42     sshLibPropertyService().blueprintSshClientService(jsonNode)
43
44 class SshLibConstants {
45     companion object {
46
47         const val SERVICE_BLUEPRINT_SSH_LIB_PROPERTY = "blueprint-ssh-lib-property-service"
48         const val PROPERTY_SSH_CLIENT_PREFIX = "blueprintsprocessor.sshclient."
49         const val TYPE_BASIC_AUTH = "basic-auth"
50     }
51 }