From d0e90690108b30b4571a61f987c0d8c7d52df5da Mon Sep 17 00:00:00 2001 From: Jozsef Csongvai Date: Tue, 3 Mar 2020 11:29:27 -0500 Subject: [PATCH] Add override function to BlueprintSvcLogicService Issue-ID: CCSDK-2153 Signed-off-by: Jozsef Csongvai Change-Id: I58f807fbfea85880f3c2b9443ed62a1d84f0f6bb --- .../blueprintsprocessor/services/workflow/BlueprintSvcLogicService.kt | 4 ++++ 1 file changed, 4 insertions(+) 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") -- 2.16.6