68672f2276b9ede6a13c202db52b811f4c76faea
[ccsdk/cds.git] /
1 /*
2  * Copyright © 2017-2018 AT&T Intellectual Property.
3  * Modifications Copyright © 2019 Huawei.
4  * Modifications Copyright © 2019 Bell Canada.
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 open class RestClientProperties {
22     lateinit var type: String
23     lateinit var url: String
24     var additionalHeaders: Map<String, String>? = null
25 }
26
27 open class SSLRestClientProperties : RestClientProperties() {
28     lateinit var keyStoreInstance: String // JKS, PKCS12
29     lateinit var sslTrust: String
30     lateinit var sslTrustPassword: String
31     var sslKey: String? = null
32     var sslKeyPassword: String? = null
33 }
34
35 // FIXME("Define basic auth userName and password properties")
36 open class SSLBasicAuthRestClientProperties : SSLRestClientProperties() {
37     var basicAuth: BasicAuthRestClientProperties? = null
38 }
39
40 // FIXME("Define token properties")
41 open class SSLTokenAuthRestClientProperties : SSLRestClientProperties() {
42     var tokenAuth: TokenAuthRestClientProperties? = null
43 }
44
45 open class BasicAuthRestClientProperties : RestClientProperties() {
46     lateinit var password: String
47     lateinit var username: String
48 }
49
50 open class TokenAuthRestClientProperties : RestClientProperties() {
51     var token: String? = null
52 }
53
54 open class DME2RestClientProperties : RestClientProperties() {
55     lateinit var service: String
56     lateinit var subContext: String
57     lateinit var version: String
58     lateinit var envContext: String
59     lateinit var routeOffer: String
60     var partner: String? = null
61     lateinit var appId: String
62 }
63
64 open class PolicyManagerRestClientProperties : RestClientProperties() {
65     lateinit var env: String
66     lateinit var clientAuth: String
67     lateinit var authorisation: String
68 }