47d16fbc73d2fa3cf4af94c76c17743b192e89ee
[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     lateinit var type: String
23     var port: Int = -1
24 }
25
26 open class TokenAuthGrpcServerProperties : GrpcServerProperties() {
27     lateinit var token: String
28 }
29
30 open class TLSAuthGrpcServerProperties : GrpcServerProperties() {
31     lateinit var certChain: String
32     lateinit var privateKey: String
33     /** Below Used only for Mutual TLS */
34     var trustCertCollection: String? = null
35 }
36
37 /** GRPC Client Properties */
38 open class GrpcClientProperties {
39     lateinit var type: String
40     lateinit var host: String
41     var port: Int = -1
42 }
43
44 open class TokenAuthGrpcClientProperties : GrpcClientProperties() {
45     lateinit var token: String
46 }
47
48 open class TLSAuthGrpcClientProperties : GrpcClientProperties() {
49     var trustCertCollection: String? = null
50     /** Below Used only for Mutual TLS */
51     var clientCertChain: String? = null
52     var clientPrivateKey: String? = null
53 }
54
55 open class BasicAuthGrpcClientProperties : GrpcClientProperties() {
56     lateinit var username: String
57     lateinit var password: String
58 }