From e92fce768cb792f11920f45fdbb38b3af69e212f Mon Sep 17 00:00:00 2001 From: Jozsef Csongvai Date: Tue, 19 Jan 2021 12:32:04 -0500 Subject: Update to latest version Issue-ID: TEST-295 Signed-off-by: Jozsef Csongvai Change-Id: Ie14e2061c1e0931bf3d555e54c79bb736d140d5c --- .../cba/netconf/Scripts/kotlin/kotlin.kt | 47 ---------------------- 1 file changed, 47 deletions(-) delete mode 100644 cds-regression-test/cba/netconf/Scripts/kotlin/kotlin.kt (limited to 'cds-regression-test/cba/netconf/Scripts/kotlin/kotlin.kt') diff --git a/cds-regression-test/cba/netconf/Scripts/kotlin/kotlin.kt b/cds-regression-test/cba/netconf/Scripts/kotlin/kotlin.kt deleted file mode 100644 index 956890a..0000000 --- a/cds-regression-test/cba/netconf/Scripts/kotlin/kotlin.kt +++ /dev/null @@ -1,47 +0,0 @@ -package org.onap.ccsdk.cds.blueprintsprocessor.functions.netconf.executor - -import org.onap.ccsdk.cds.blueprintsprocessor.services.execution.AbstractScriptComponentFunction -import org.onap.ccsdk.cds.blueprintsprocessor.core.api.data.ExecutionServiceInput -import org.onap.ccsdk.cds.blueprintsprocessor.functions.resource.resolution.storedContentFromResolvedArtifactNB -import org.onap.ccsdk.cds.controllerblueprints.core.utils.JacksonUtils -import org.slf4j.LoggerFactory - -open class ConfigDeploy : AbstractScriptComponentFunction() { - - private val log = LoggerFactory.getLogger(ConfigDeploy::class.java)!! - - override suspend fun processNB(executionRequest: ExecutionServiceInput) { - val device = netconfDevice("netconf-connection") - val client = device.netconfRpcService - val session = device.netconfSession - - val payload=""" - - - - Regression-Mock - - - """ - - val response: MutableMap = mutableMapOf("deploySuccess" to false) - - try { - session.connect() - client.lock() - client.editConfig(payload) - client.commit() - client.unLock() - session.disconnect() - response["deploySuccess"] = true - } catch (e: Exception) { - e.message?.let { super.addError(it) } - } - - super.setAttribute("response-data", JacksonUtils.jsonNodeFromObject(response)) - } - - override suspend fun recoverNB(runtimeException: RuntimeException, executionRequest: ExecutionServiceInput) { - log.info("Executing Recovery") - } -} -- cgit 1.2.3-korg