summaryrefslogtreecommitdiffstats
path: root/ms/blueprintsprocessor/functions/resource-resolution/src/main/kotlin/scripts/InternalRAProcessor.cba.kts
diff options
context:
space:
mode:
authorBrinda Santh <brindasanth@in.ibm.com>2019-07-26 10:22:16 -0400
committerBrinda Santh <brindasanth@in.ibm.com>2019-07-26 16:17:05 -0400
commit72fed8f256ca2298f2d22dd70595803911a0b2b8 (patch)
tree9c659f74e477a26cbdd6f0a310564c13a7d37f09 /ms/blueprintsprocessor/functions/resource-resolution/src/main/kotlin/scripts/InternalRAProcessor.cba.kts
parentbb5e712fd1c547b393e05a68cac745c5fc452c35 (diff)
Upgrade cds spring and kotlin versions.
Change-Id: I0f323bd13c433d9ef0e207f51234d10cd8c22858 Issue-ID: CCSDK-1352 Signed-off-by: Brinda Santh <brindasanth@in.ibm.com>
Diffstat (limited to 'ms/blueprintsprocessor/functions/resource-resolution/src/main/kotlin/scripts/InternalRAProcessor.cba.kts')
-rw-r--r--ms/blueprintsprocessor/functions/resource-resolution/src/main/kotlin/scripts/InternalRAProcessor.cba.kts36
1 files changed, 0 insertions, 36 deletions
diff --git a/ms/blueprintsprocessor/functions/resource-resolution/src/main/kotlin/scripts/InternalRAProcessor.cba.kts b/ms/blueprintsprocessor/functions/resource-resolution/src/main/kotlin/scripts/InternalRAProcessor.cba.kts
deleted file mode 100644
index 32f04e6a0..000000000
--- a/ms/blueprintsprocessor/functions/resource-resolution/src/main/kotlin/scripts/InternalRAProcessor.cba.kts
+++ /dev/null
@@ -1,36 +0,0 @@
-/*
- * Copyright © 2019 IBM.
- *
- * 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.cds.blueprintsprocessor.functions.resource.resolution.processor.ResourceAssignmentProcessor
-import org.onap.ccsdk.cds.controllerblueprints.resource.dict.ResourceAssignment
-import org.slf4j.LoggerFactory
-
-open class SimpleRAProcessor : ResourceAssignmentProcessor() {
-
- private val log = LoggerFactory.getLogger(SimpleRAProcessor::class.java)!!
-
- override fun getName(): String {
- return "ScriptResourceAssignmentProcessor"
- }
-
- override suspend fun processNB(executionRequest: ResourceAssignment) {
- log.info("Processing input")
- }
-
- override suspend fun recoverNB(runtimeException: RuntimeException, executionRequest: ResourceAssignment) {
- log.info("Recovering input")
- }
-}