Formatting Code base with ktlint
[ccsdk/cds.git] / ms / blueprintsprocessor / modules / commons / grpc-lib / src / main / kotlin / org / onap / ccsdk / cds / blueprintsprocessor / grpc / BluePrintGrpcLibData.kt
1 /*
2  *  Copyright © 2019 IBM.
3  *  Modifications Copyright © 2018-2019 AT&T Intellectual Property.
4  *
5  *  Licensed under the Apache License, Version 2.0 (the "License");
6  *  you may not use this file except in compliance with the License.
7  *  You may obtain a copy of the License at
8  *
9  *      http://www.apache.org/licenses/LICENSE-2.0
10  *
11  *  Unless required by applicable law or agreed to in writing, software
12  *  distributed under the License is distributed on an "AS IS" BASIS,
13  *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  *  See the License for the specific language governing permissions and
15  *  limitations under the License.
16  */
17
18 package org.onap.ccsdk.cds.blueprintsprocessor.grpc
19
20 /** GRPC Server Properties */
21 open class GrpcServerProperties {
22
23     lateinit var type: String
24     var port: Int = -1
25 }
26
27 open class TokenAuthGrpcServerProperties : GrpcServerProperties() {
28     lateinit var token: String
29 }
30
31 open class TLSAuthGrpcServerProperties : GrpcServerProperties() {
32     lateinit var certChain: String
33     lateinit var privateKey: String
34     /** Below Used only for Mutual TLS */
35     var trustCertCollection: String? = null
36 }
37
38 /** GRPC Client Properties */
39 open class GrpcClientProperties {
40
41     lateinit var type: String
42     lateinit var host: String
43     var port: Int = -1
44 }
45
46 open class TokenAuthGrpcClientProperties : GrpcClientProperties() {
47     lateinit var token: String
48 }
49
50 open class TLSAuthGrpcClientProperties : GrpcClientProperties() {
51     var trustCertCollection: String? = null
52     /** Below Used only for Mutual TLS */
53     var clientCertChain: String? = null
54     var clientPrivateKey: String? = null
55 }
56
57 open class BasicAuthGrpcClientProperties : GrpcClientProperties() {
58     lateinit var username: String
59     lateinit var password: String
60 }