diff options
author | Singal, Kapil (ks220y) <ks220y@att.com> | 2019-09-26 20:51:12 -0400 |
---|---|---|
committer | Singal, Kapil (ks220y) <ks220y@att.com> | 2019-09-26 21:30:09 -0400 |
commit | f01c8cc6107cefe1a7e219f69344b5adb53c25be (patch) | |
tree | b7081a42a8c36727f4c8a48761894fe962391fe1 /ms/controllerblueprints/modules/resource-dict | |
parent | 9ea0e262d12f2a091daffb66191165bb650dbd68 (diff) |
Resource Resolution Refactoring
Refactoring some logging statements and adding new loggers
Issue-ID: CCSDK-1748
Signed-off-by: Singal, Kapil (ks220y) <ks220y@att.com>
Change-Id: I5676659eea01056a7d29206f13473a4361516755
Diffstat (limited to 'ms/controllerblueprints/modules/resource-dict')
-rw-r--r-- | ms/controllerblueprints/modules/resource-dict/src/main/kotlin/org/onap/ccsdk/cds/controllerblueprints/resource/dict/ResourceDefinition.kt | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/ms/controllerblueprints/modules/resource-dict/src/main/kotlin/org/onap/ccsdk/cds/controllerblueprints/resource/dict/ResourceDefinition.kt b/ms/controllerblueprints/modules/resource-dict/src/main/kotlin/org/onap/ccsdk/cds/controllerblueprints/resource/dict/ResourceDefinition.kt index 2966d8b5d..f1e0d2c86 100644 --- a/ms/controllerblueprints/modules/resource-dict/src/main/kotlin/org/onap/ccsdk/cds/controllerblueprints/resource/dict/ResourceDefinition.kt +++ b/ms/controllerblueprints/modules/resource-dict/src/main/kotlin/org/onap/ccsdk/cds/controllerblueprints/resource/dict/ResourceDefinition.kt @@ -85,16 +85,13 @@ open class ResourceAssignment { override fun toString(): String { return """ - [ + [ name = $name - status = $status - property [ - defaultValue = ${property?.defaultValue} - required = ${property?.required} - metadata = ${property?.metadata} - ] + status = $status + required = ${property?.required} + dependencies = $dependencies dictionaryName = $dictionaryName - dictionarySource = $dictionarySource + dictionarySource = $dictionarySource ] """.trimIndent() } |