From: Jozsef Csongvai Date: Tue, 3 Mar 2020 16:29:27 +0000 (-0500) Subject: Add override function to BlueprintSvcLogicService X-Git-Tag: 0.7.0~18 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=d0e90690108b30b4571a61f987c0d8c7d52df5da;p=ccsdk%2Fcds.git Add override function to BlueprintSvcLogicService Issue-ID: CCSDK-2153 Signed-off-by: Jozsef Csongvai Change-Id: I58f807fbfea85880f3c2b9443ed62a1d84f0f6bb --- diff --git a/ms/blueprintsprocessor/modules/services/workflow-service/src/main/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/services/workflow/BlueprintSvcLogicService.kt b/ms/blueprintsprocessor/modules/services/workflow-service/src/main/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/services/workflow/BlueprintSvcLogicService.kt index 9cc325d94..4efe9f12d 100644 --- a/ms/blueprintsprocessor/modules/services/workflow-service/src/main/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/services/workflow/BlueprintSvcLogicService.kt +++ b/ms/blueprintsprocessor/modules/services/workflow-service/src/main/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/services/workflow/BlueprintSvcLogicService.kt @@ -49,6 +49,10 @@ interface BlueprintSvcLogicService : SvcLogicServiceBase { suspend fun execute(graph: SvcLogicGraph, bluePrintRuntimeService: BluePrintRuntimeService<*>, input: Any): Any + override fun execute(module: String, rpc: String, version: String, mode: String, ctx: SvcLogicContext): SvcLogicContext { + TODO("not implemented") + } + @Deprecated("Populate Graph Dynamically from Blueprints, No need to get from Database Store ") override fun getStore(): SvcLogicStore { TODO("not implemented")