Add missing k8s-rb-instance-release-name.json
[ccsdk/cds.git] / ms / blueprintsprocessor / modules / commons / rest-lib / src / main / kotlin / org / onap / ccsdk / cds / blueprintsprocessor / rest / BlueprintRestLibConfiguration.kt
1 /*
2  * Copyright © 2017-2018 AT&T Intellectual Property.
3  * Modifications Copyright © 2019 IBM.
4  * Modifications Copyright © 2019 Huawei.
5  *
6  * Licensed under the Apache License, Version 2.0 (the "License");
7  * you may not use this file except in compliance with the License.
8  * You may obtain a copy of the License at
9  *
10  *     http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and
16  * limitations under the License.
17  */
18
19 package org.onap.ccsdk.cds.blueprintsprocessor.rest
20
21 import com.fasterxml.jackson.databind.JsonNode
22 import org.onap.ccsdk.cds.blueprintsprocessor.rest.service.BlueprintRestLibPropertyService
23 import org.onap.ccsdk.cds.blueprintsprocessor.rest.service.BlueprintWebClientService
24 import org.onap.ccsdk.cds.controllerblueprints.core.service.BlueprintDependencyService
25 import org.springframework.boot.context.properties.EnableConfigurationProperties
26 import org.springframework.context.annotation.ComponentScan
27 import org.springframework.context.annotation.Configuration
28
29 @Configuration
30 @ComponentScan
31 @EnableConfigurationProperties
32 open class BlueprintRestLibConfiguration
33
34 /**
35  * Exposed Dependency Service by this Rest Lib Module
36  */
37 fun BlueprintDependencyService.restLibPropertyService(): BlueprintRestLibPropertyService =
38     instance(RestLibConstants.SERVICE_BLUEPRINT_REST_LIB_PROPERTY)
39
40 fun BlueprintDependencyService.restClientService(selector: String): BlueprintWebClientService {
41     return restLibPropertyService().blueprintWebClientService(selector)
42 }
43
44 fun BlueprintDependencyService.restClientService(jsonNode: JsonNode): BlueprintWebClientService {
45     return restLibPropertyService().blueprintWebClientService(jsonNode)
46 }
47
48 class RestLibConstants {
49     companion object {
50
51         const val SERVICE_BLUEPRINT_REST_LIB_PROPERTY = "blueprint-rest-lib-property-service"
52         const val PROPERTY_REST_CLIENT_PREFIX = "blueprintsprocessor.restclient."
53         const val PROPERTY_TYPE = "type"
54         const val TYPE_TOKEN_AUTH = "token-auth"
55         const val TYPE_BASIC_AUTH = "basic-auth"
56         const val TYPE_SSL_BASIC_AUTH = "ssl-basic-auth"
57         const val TYPE_SSL_TOKEN_AUTH = "ssl-token-auth"
58         const val TYPE_SSL_NO_AUTH = "ssl-no-auth"
59         const val TYPE_POLICY_MANAGER = "policy-manager"
60     }
61 }