Renaming Files having BluePrint to have Blueprint
[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
29     lateinit var token: String
30 }
31
32 open class TLSAuthGrpcServerProperties : GrpcServerProperties() {
33
34     lateinit var certChain: String
35     lateinit var privateKey: String
36
37     /** Below Used only for Mutual TLS */
38     var trustCertCollection: String? = null
39 }
40
41 /** GRPC Client Properties */
42 open class GrpcClientProperties {
43
44     lateinit var type: String
45     lateinit var host: String
46     var port: Int = -1
47 }
48
49 open class TokenAuthGrpcClientProperties : GrpcClientProperties() {
50
51     lateinit var token: String
52 }
53
54 open class TLSAuthGrpcClientProperties : GrpcClientProperties() {
55
56     var trustCertCollection: String? = null
57
58     /** Below Used only for Mutual TLS */
59     var clientCertChain: String? = null
60     var clientPrivateKey: String? = null
61 }
62
63 open class BasicAuthGrpcClientProperties : GrpcClientProperties() {
64
65     lateinit var username: String
66     lateinit var password: String
67 }