Formatting Code base with ktlint
[ccsdk/cds.git] / ms / controllerblueprints / modules / blueprint-core / src / test / resources / compile / Scripts / kotlin / ActivateBlueprintDefinitions.kt
index 4f4d210..5dd1937 100644 (file)
@@ -26,8 +26,10 @@ class ActivateBlueprintDefinitions : AbstractBluePrintDefinitions() {
 
     override fun serviceTemplate(): ServiceTemplate {
 
-        return serviceTemplate("sample-blue-print", "1.0.0",
-                "brindasanth@onap.com", "sample, blueprints") {
+        return serviceTemplate(
+            "sample-blue-print", "1.0.0",
+            "brindasanth@onap.com", "sample, blueprints"
+        ) {
             topologyTemplate {
                 workflowNodeTemplate("activate", "component-resource-resolution", "") {
                     operation("ResourceResolutionExecutor", "") {
@@ -42,12 +44,14 @@ class ActivateBlueprintDefinitions : AbstractBluePrintDefinitions() {
 
     override fun loadOtherDefinitions() {
         /** Sample Definitions */
-        val customDataType = dataType("custom-datatype", "1.0.0",
-                BluePrintConstants.MODEL_TYPE_DATATYPES_ROOT, "") {
+        val customDataType = dataType(
+            "custom-datatype", "1.0.0",
+            BluePrintConstants.MODEL_TYPE_DATATYPES_ROOT, ""
+        ) {
             property("name", BluePrintConstants.DATA_TYPE_STRING, true, "")
             property("value", BluePrintConstants.DATA_TYPE_STRING, true, "")
         }
         /** Loading to definitions */
         addOtherDefinition("datatype-custom-datatype", customDataType)
     }
-}
\ No newline at end of file
+}