Add override function to BlueprintSvcLogicService 84/102884/1
authorJozsef Csongvai <jozsef.csongvai@bell.ca>
Tue, 3 Mar 2020 16:29:27 +0000 (11:29 -0500)
committerJozsef Csongvai <jozsef.csongvai@bell.ca>
Tue, 3 Mar 2020 16:40:16 +0000 (11:40 -0500)
Issue-ID: CCSDK-2153
Signed-off-by: Jozsef Csongvai <jozsef.csongvai@bell.ca>
Change-Id: I58f807fbfea85880f3c2b9443ed62a1d84f0f6bb

ms/blueprintsprocessor/modules/services/workflow-service/src/main/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/services/workflow/BlueprintSvcLogicService.kt

index 9cc325d..4efe9f1 100644 (file)
@@ -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")