From 3f83c10aa60ccecd020b06917de694ec11f544b0 Mon Sep 17 00:00:00 2001 From: "Muthuramalingam, Brinda Santh(bs2796)" Date: Thu, 15 Nov 2018 13:12:09 -0500 Subject: Blueprints Processor Microservice Implement Resource Resolution Processor Interface definitions. Change-Id: Ic2eb7915d48b9473639494ee9d159003bf56e81e Issue-ID: CCSDK-724 Signed-off-by: Muthuramalingam, Brinda Santh(bs2796) --- .../services/workflow/mock/MockComponentFunction.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ms/blueprintsprocessor/modules/services/workflow-service/src/test') diff --git a/ms/blueprintsprocessor/modules/services/workflow-service/src/test/kotlin/org/onap/ccsdk/apps/blueprintsprocessor/services/workflow/mock/MockComponentFunction.kt b/ms/blueprintsprocessor/modules/services/workflow-service/src/test/kotlin/org/onap/ccsdk/apps/blueprintsprocessor/services/workflow/mock/MockComponentFunction.kt index 5787721ca..5aa90130a 100644 --- a/ms/blueprintsprocessor/modules/services/workflow-service/src/test/kotlin/org/onap/ccsdk/apps/blueprintsprocessor/services/workflow/mock/MockComponentFunction.kt +++ b/ms/blueprintsprocessor/modules/services/workflow-service/src/test/kotlin/org/onap/ccsdk/apps/blueprintsprocessor/services/workflow/mock/MockComponentFunction.kt @@ -37,10 +37,10 @@ class MockComponentFunction : AbstractComponentFunction() { private val log = LoggerFactory.getLogger(ComponentExecuteNodeExecutor::class.java) override fun process(executionRequest: ExecutionServiceInput) { - super.process(executionRequest) + log.info("Processing component..") } override fun recover(runtimeException: RuntimeException, executionRequest: ExecutionServiceInput) { - super.recover(runtimeException, executionRequest) + log.info("Recovering component..") } } \ No newline at end of file -- cgit 1.2.3-korg