2 * Copyright © 2017-2018 AT&T Intellectual Property.
3 * Modifications Copyright © 2019 IBM.
4 * Modifications Copyright © 2019 Huawei.
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
10 * http://www.apache.org/licenses/LICENSE-2.0
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.
19 package org.onap.ccsdk.cds.blueprintsprocessor.rest
21 import org.springframework.boot.context.properties.EnableConfigurationProperties
22 import org.springframework.context.annotation.ComponentScan
23 import org.springframework.context.annotation.Configuration
27 @EnableConfigurationProperties
28 open class BluePrintRestLibConfiguration
31 class RestLibConstants {
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"