Formatting Code base with ktlint
[ccsdk/cds.git] / ms / blueprintsprocessor / modules / commons / ssh-lib / src / main / kotlin / org / onap / ccsdk / cds / blueprintsprocessor / ssh / BluePrintSshLibConfiguration.kt
index 3c625a6..382c9b7 100644 (file)
@@ -33,16 +33,13 @@ open class BluePrintSshLibConfiguration
  * Exposed Dependency Service by this SSH Lib Module
  */
 fun BluePrintDependencyService.sshLibPropertyService(): BluePrintSshLibPropertyService =
-        instance(SshLibConstants.SERVICE_BLUEPRINT_SSH_LIB_PROPERTY)
-
+    instance(SshLibConstants.SERVICE_BLUEPRINT_SSH_LIB_PROPERTY)
 
 fun BluePrintDependencyService.sshClientService(selector: String): BlueprintSshClientService =
-        sshLibPropertyService().blueprintSshClientService(selector)
-
+    sshLibPropertyService().blueprintSshClientService(selector)
 
 fun BluePrintDependencyService.sshClientService(jsonNode: JsonNode): BlueprintSshClientService =
-        sshLibPropertyService().blueprintSshClientService(jsonNode)
-
+    sshLibPropertyService().blueprintSshClientService(jsonNode)
 
 class SshLibConstants {
     companion object {
@@ -50,4 +47,4 @@ class SshLibConstants {
         const val PROPERTY_SSH_CLIENT_PREFIX = "blueprintsprocessor.sshclient."
         const val TYPE_BASIC_AUTH = "basic-auth"
     }
-}
\ No newline at end of file
+}