Formatting Code base with ktlint
[ccsdk/cds.git] / ms / blueprintsprocessor / modules / inbounds / health-api / src / main / kotlin / org / onap / ccsdk / cds / blueprintsprocessor / healthapi / controller / CombinedHealth.kt
index 54c85a0..531a275 100644 (file)
@@ -35,18 +35,20 @@ import org.springframework.web.bind.annotation.RestController
  */
 @RestController
 @RequestMapping("/api/v1/combinedHealth")
-@Api(value = "/api/v1/combinedHealth",
-        description = "gather all HealthCheckResponses for HealthChecks known to the runtime")
+@Api(
+    value = "/api/v1/combinedHealth",
+    description = "gather all HealthCheckResponses for HealthChecks known to the runtime"
+)
 open class CombinedHealth(private val combinedHealthService: CombinedHealthService) {
 
-    @RequestMapping(path = [""],
-            method = [RequestMethod.GET],
-            produces = [MediaType.APPLICATION_JSON_VALUE])
+    @RequestMapping(
+        path = [""],
+        method = [RequestMethod.GET],
+        produces = [MediaType.APPLICATION_JSON_VALUE]
+    )
     @ResponseBody
     @ApiOperation(value = "Health Check", hidden = true)
     fun getSystemHealthCheckResponse(): ResponseEntity<List<ApplicationHealth?>> {
         return ResponseEntity.ok().body(combinedHealthService.getCombinedHealthCheck())
-
     }
 }
-