Renaming Files having BluePrint to have Blueprint
[ccsdk/cds.git] / ms / blueprintsprocessor / modules / commons / dmaap-lib / src / main / kotlin / org / onap / ccsdk / cds / blueprintsprocessor / dmaap / HttpNoAuthDmaapClientService.kt
index 8bf50a9..4f9f89a 100644 (file)
@@ -27,16 +27,17 @@ import com.att.nsa.mr.client.impl.MRSimplerBatchPublisher
 /**
  * Representation of DMAAP client service for HTTP no auth type.
  */
-class HttpNoAuthDmaapClientService(private val clientProps:
-                                   HttpNoAuthDmaapClientProperties)
-    : BluePrintDmaapClientService {
+class HttpNoAuthDmaapClientService(
+    private val clientProps:
+        HttpNoAuthDmaapClientProperties
+) :
+    BlueprintDmaapClientService {
 
     /**
      * The constructed DMAAP client.
      */
     var clients: MutableList<MRBatchingPublisher> = mutableListOf()
 
-
     /**
      * Returns the DMAAP client after constructing it properly with the data
      * that is required for HTTP no auth connection.
@@ -58,5 +59,4 @@ class HttpNoAuthDmaapClientService(private val clientProps:
 
         return clients
     }
-
-}
\ No newline at end of file
+}