diff options
author | Muthuramalingam, Brinda Santh(bs2796) <bs2796@att.com> | 2018-11-15 13:12:09 -0500 |
---|---|---|
committer | Muthuramalingam, Brinda Santh(bs2796) <bs2796@att.com> | 2018-11-15 13:12:09 -0500 |
commit | 13f780024e7ca0943f5409691fafbd503c26d837 (patch) | |
tree | 8a826a788d3ce0fdc65a151c09cedae4db2fa840 /ms/blueprintsprocessor/modules/services/workflow-service | |
parent | ec92866fa0bc8d8cd7a6ce4d5d5fd014d8eacef1 (diff) |
Blueprints Processor Microservice
Implement Resource Resolution Processor Interface definitions.
Change-Id: Ic2eb7915d48b9473639494ee9d159003bf56e81e
Issue-ID: CCSDK-724
Signed-off-by: Muthuramalingam, Brinda Santh(bs2796) <bs2796@att.com>
Diffstat (limited to 'ms/blueprintsprocessor/modules/services/workflow-service')
-rw-r--r-- | ms/blueprintsprocessor/modules/services/workflow-service/src/test/kotlin/org/onap/ccsdk/apps/blueprintsprocessor/services/workflow/mock/MockComponentFunction.kt | 4 |
1 files changed, 2 insertions, 2 deletions
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 5787721c..5aa90130 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 |