aboutsummaryrefslogtreecommitdiffstats
path: root/components/core/src/test/resources/scripts/SampleBlueprintFunctionNode.kts
diff options
context:
space:
mode:
authorMuthuramalingam, Brinda Santh <brindasanth@in.ibm.com>2019-02-07 14:51:50 -0500
committerMuthuramalingam, Brinda Santh <brindasanth@in.ibm.com>2019-02-07 14:51:50 -0500
commitc8ec87c77de53f5933a6519e55c1c6d4c6be6530 (patch)
tree2a48f38350ef692d19dfbd8b60071821e418b905 /components/core/src/test/resources/scripts/SampleBlueprintFunctionNode.kts
parent8df5693cba361b130d9feff10e2477cfec1230d7 (diff)
Refactor components core and resource dict modules
Change-Id: I04e9e723d68a38ecefe48206e67fddbe43c55854 Issue-ID: CCSDK-1047 Signed-off-by: Muthuramalingam, Brinda Santh <brindasanth@in.ibm.com>
Diffstat (limited to 'components/core/src/test/resources/scripts/SampleBlueprintFunctionNode.kts')
-rw-r--r--components/core/src/test/resources/scripts/SampleBlueprintFunctionNode.kts44
1 files changed, 0 insertions, 44 deletions
diff --git a/components/core/src/test/resources/scripts/SampleBlueprintFunctionNode.kts b/components/core/src/test/resources/scripts/SampleBlueprintFunctionNode.kts
deleted file mode 100644
index 44cc957d2..000000000
--- a/components/core/src/test/resources/scripts/SampleBlueprintFunctionNode.kts
+++ /dev/null
@@ -1,44 +0,0 @@
-/*
- * Copyright © 2017-2018 AT&T Intellectual Property.
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-import org.onap.ccsdk.apps.controllerblueprints.core.interfaces.BlueprintFunctionNode
-
-open class SampleBlueprintFunctionNode : BlueprintFunctionNode<String, String>{
-
- override fun getName(): String {
- return "Kotlin-Script-Function-Node"
- }
-
- override fun prepareRequest(executionRequest: String): String {
- TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
- }
-
- override fun process(executionRequest: String) {
- TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
- }
-
- override fun recover(runtimeException: RuntimeException, executionRequest: String) {
- TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
- }
-
- override fun prepareResponse(): String {
- TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
- }
-
- override fun apply(t: String): String {
- return "$t-status"
- }
-} \ No newline at end of file