aboutsummaryrefslogtreecommitdiffstats
path: root/heat/vFW_CNF_CDS/templates/cba/Scripts/kotlin/CollectorScript.kt
diff options
context:
space:
mode:
authorMichal Chabiera <michal.chabiera@orange.com>2021-09-21 10:16:15 +0200
committerMichal Chabiera <michal.chabiera@orange.com>2021-09-21 10:16:15 +0200
commit129d553d323653461d14f248cb9e8b6f266eb5e3 (patch)
tree2c6f13143c847c10538ec615fb172acf6b51fed7 /heat/vFW_CNF_CDS/templates/cba/Scripts/kotlin/CollectorScript.kt
parenta4faf95fb18ca579132bb2d4db9631ccedab46f9 (diff)
vFW CNF CDS Change Blueprint to BluePrint
Kotlin scripts don't comile after modification in CDS. Some Blueprint have to be changed into BluePrint Issue-ID: INT-1960 Signed-off-by: Michal Chabiera <michal.chabiera@orange.com> Change-Id: Iffeb76249651d2fd0a987d5b6f9ad9bd4c04632a
Diffstat (limited to 'heat/vFW_CNF_CDS/templates/cba/Scripts/kotlin/CollectorScript.kt')
-rw-r--r--heat/vFW_CNF_CDS/templates/cba/Scripts/kotlin/CollectorScript.kt4
1 files changed, 2 insertions, 2 deletions
diff --git a/heat/vFW_CNF_CDS/templates/cba/Scripts/kotlin/CollectorScript.kt b/heat/vFW_CNF_CDS/templates/cba/Scripts/kotlin/CollectorScript.kt
index a9de1972..4e545bcb 100644
--- a/heat/vFW_CNF_CDS/templates/cba/Scripts/kotlin/CollectorScript.kt
+++ b/heat/vFW_CNF_CDS/templates/cba/Scripts/kotlin/CollectorScript.kt
@@ -20,7 +20,7 @@ import com.fasterxml.jackson.databind.JsonNode
import org.onap.ccsdk.cds.blueprintsprocessor.core.api.data.ExecutionServiceInput
import org.onap.ccsdk.cds.blueprintsprocessor.services.execution.AbstractScriptComponentFunction
import org.onap.ccsdk.cds.blueprintsprocessor.services.execution.ComponentScriptExecutor
-import org.onap.ccsdk.cds.controllerblueprints.core.BlueprintProcessorException
+import org.onap.ccsdk.cds.controllerblueprints.core.BluePrintProcessorException
import org.onap.ccsdk.cds.controllerblueprints.core.asJsonNode
import org.onap.ccsdk.cds.controllerblueprints.core.logger
@@ -42,7 +42,7 @@ open class CollectorScript : AbstractScriptComponentFunction() {
return try {
bluePrintRuntimeService.getNodeTemplateAttributeValue(nodeTemplateName,
ComponentScriptExecutor.ATTRIBUTE_RESPONSE_DATA)
- } catch (exception: BlueprintProcessorException) { null }
+ } catch (exception: BluePrintProcessorException) { null }
}
override suspend fun recoverNB(runtimeException: RuntimeException, executionRequest: ExecutionServiceInput) {