fa4ff231dc570307fe8d7fe0f730cacb001d1e72
[ccsdk/cds.git] /
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 org.springframework.boot.context.properties.EnableConfigurationProperties
22 import org.springframework.context.annotation.ComponentScan
23 import org.springframework.context.annotation.Configuration
24
25 @Configuration
26 @ComponentScan
27 @EnableConfigurationProperties
28 open class BluePrintRestLibConfiguration
29
30
31 class RestLibConstants {
32     companion object {
33         const val SERVICE_BLUEPRINT_REST_LIB_PROPERTY = "blueprint-rest-lib-property-service"
34         const val TYPE_TOKEN_AUTH = "token-auth"
35         const val TYPE_BASIC_AUTH = "basic-auth"
36         const val TYPE_SSL_BASIC_AUTH = "ssl-basic-auth"
37         const val TYPE_SSL_TOKEN_AUTH = "ssl-token-auth"
38         const val TYPE_SSL_NO_AUTH = "ssl-no-auth"
39         const val TYPE_DME2_PROXY = "dme2-proxy"
40         const val TYPE_POLICY_MANAGER = "policy-manager"
41     }
42 }