Formatting Code base with ktlint
[ccsdk/cds.git] / ms / controllerblueprints / modules / blueprint-core / src / main / kotlin / org / onap / ccsdk / cds / controllerblueprints / core / config / BluePrintLoadConfiguration.kt
index 2815bad..0128f64 100644 (file)
@@ -1,5 +1,6 @@
 /*
  * Copyright © 2017-2018 AT&T Intellectual Property.
+ * Modifications Copyright © 2019 IBM.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
 package org.onap.ccsdk.cds.controllerblueprints.core.config
 
 open class BluePrintLoadConfiguration {
-
     lateinit var blueprintDeployPath: String
     lateinit var blueprintArchivePath: String
-    lateinit var blueprintEnrichmentPath: String
+    lateinit var blueprintWorkingPath: String
 
-    var loadInitialData: Boolean = false
-    var loadBluePrint: Boolean = false
     var loadBluePrintPaths: String? = null
-
-    var loadModelType: Boolean = false
     var loadModeTypePaths: String? = null
-
-    var loadResourceDictionary: Boolean = false
     var loadResourceDictionaryPaths: String? = null
-}
\ No newline at end of file
+}