Formatting Code base with ktlint
[ccsdk/cds.git] / ms / controllerblueprints / modules / blueprint-core / src / main / kotlin / org / onap / ccsdk / cds / controllerblueprints / core / interfaces / BluePrintWorkflowExecutionService.kt
index 92be675..70c7973 100644 (file)
@@ -20,7 +20,9 @@ import org.onap.ccsdk.cds.controllerblueprints.core.service.BluePrintRuntimeServ
 
 interface BluePrintWorkflowExecutionService<Input, Output> {
 
-    suspend fun executeBluePrintWorkflow(bluePrintRuntimeService: BluePrintRuntimeService<*>,
-                                         executionServiceInput: Input,
-                                         properties: MutableMap<String, Any> = hashMapOf()): Output
-}
\ No newline at end of file
+    suspend fun executeBluePrintWorkflow(
+        bluePrintRuntimeService: BluePrintRuntimeService<*>,
+        executionServiceInput: Input,
+        properties: MutableMap<String, Any> = hashMapOf()
+    ): Output
+}