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
index 47d16fb..f94d918 100644 (file)
@@ -19,6 +19,7 @@ package org.onap.ccsdk.cds.blueprintsprocessor.grpc
 
 /** GRPC Server Properties */
 open class GrpcServerProperties {
+
     lateinit var type: String
     var port: Int = -1
 }
@@ -36,6 +37,7 @@ open class TLSAuthGrpcServerProperties : GrpcServerProperties() {
 
 /** GRPC Client Properties */
 open class GrpcClientProperties {
+
     lateinit var type: String
     lateinit var host: String
     var port: Int = -1
@@ -55,4 +57,4 @@ open class TLSAuthGrpcClientProperties : GrpcClientProperties() {
 open class BasicAuthGrpcClientProperties : GrpcClientProperties() {
     lateinit var username: String
     lateinit var password: String
-}
\ No newline at end of file
+}