aboutsummaryrefslogtreecommitdiffstats
path: root/components/resource-dict/src/main/kotlin
diff options
context:
space:
mode:
authorDan Timoney <dtimoney@att.com>2018-11-15 20:35:12 +0000
committerGerrit Code Review <gerrit@onap.org>2018-11-15 20:35:12 +0000
commit8e2f54808446119be1fc4fa2a8f3cf089aeabd46 (patch)
treeb72f9e4ec923101220bb7bb1a22ad53e9adb3360 /components/resource-dict/src/main/kotlin
parent452a3c355a74436457bd526e08c08583e64a7ae0 (diff)
parenta9bf0541c65d8bb81b814bd85253cf4518fcb52b (diff)
Merge "Controller Design Studio"
Diffstat (limited to 'components/resource-dict/src/main/kotlin')
-rw-r--r--components/resource-dict/src/main/kotlin/org/onap/ccsdk/apps/controllerblueprints/resource/dict/service/ResourceDefinitionRepoService.kt6
1 files changed, 4 insertions, 2 deletions
diff --git a/components/resource-dict/src/main/kotlin/org/onap/ccsdk/apps/controllerblueprints/resource/dict/service/ResourceDefinitionRepoService.kt b/components/resource-dict/src/main/kotlin/org/onap/ccsdk/apps/controllerblueprints/resource/dict/service/ResourceDefinitionRepoService.kt
index 6c83e5f9..6d186b59 100644
--- a/components/resource-dict/src/main/kotlin/org/onap/ccsdk/apps/controllerblueprints/resource/dict/service/ResourceDefinitionRepoService.kt
+++ b/components/resource-dict/src/main/kotlin/org/onap/ccsdk/apps/controllerblueprints/resource/dict/service/ResourceDefinitionRepoService.kt
@@ -49,10 +49,12 @@ open class ResourceDefinitionFileRepoService : BluePrintRepoFileService,
constructor(basePath: String) : this(basePath,
basePath.plus(BluePrintConstants.PATH_DIVIDER)
- .plus(BluePrintConstants.MODEL_DIR_MODEL_TYPE))
+ .plus(BluePrintConstants.MODEL_DIR_MODEL_TYPE)
+ .plus(BluePrintConstants.PATH_DIVIDER)
+ .plus("starter-type"))
constructor(basePath: String, modelTypePath: String) : super(modelTypePath) {
- resourceDefinitionPath = basePath.plus("/resource_dictionary")
+ resourceDefinitionPath = basePath.plus("/resource-dictionary/starter-dictionary")
}
override fun getResourceDefinition(resourceDefinitionName: String): Mono<ResourceDefinition> {