From 75bde43b48042133b2cd08a389d6997b08394480 Mon Sep 17 00:00:00 2001 From: Dan Timoney Date: Thu, 4 Aug 2022 14:48:26 -0400 Subject: Fixes from local testing Updates to ccsdk/features to address issues found in local testing with ODL Sulfur Issue-ID: CCSDK-3692 Signed-off-by: Dan Timoney Change-Id: Ia9479ca1ee853eded65ada7ac1f2356ffd64437f --- .../onap/ccsdk/features/sdnr/northbound/cmnotify/CMNotifyProvider.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'sdnr/northbound/CMNotify/provider/src/main') diff --git a/sdnr/northbound/CMNotify/provider/src/main/java/org/onap/ccsdk/features/sdnr/northbound/cmnotify/CMNotifyProvider.java b/sdnr/northbound/CMNotify/provider/src/main/java/org/onap/ccsdk/features/sdnr/northbound/cmnotify/CMNotifyProvider.java index 452741b3f..e4af5d2e8 100644 --- a/sdnr/northbound/CMNotify/provider/src/main/java/org/onap/ccsdk/features/sdnr/northbound/cmnotify/CMNotifyProvider.java +++ b/sdnr/northbound/CMNotify/provider/src/main/java/org/onap/ccsdk/features/sdnr/northbound/cmnotify/CMNotifyProvider.java @@ -36,7 +36,6 @@ import org.opendaylight.yang.gen.v1.org.onap.ccsdk.rev200224.NbrlistChangeNotifi import org.opendaylight.yang.gen.v1.org.onap.ccsdk.rev200224.NbrlistChangeNotificationInputBuilder; import org.opendaylight.yang.gen.v1.org.onap.ccsdk.rev200224.NbrlistChangeNotificationOutput; import org.opendaylight.yang.gen.v1.org.onap.ccsdk.rev200224.NbrlistChangeNotificationOutputBuilder; -import org.opendaylight.yangtools.concepts.Builder; import org.opendaylight.yangtools.concepts.ObjectRegistration; import org.opendaylight.yangtools.yang.common.RpcResult; import org.opendaylight.yangtools.yang.common.RpcResultBuilder; @@ -179,7 +178,7 @@ public class CMNotifyProvider implements AutoCloseable, CMNOTIFYAPIService { return Futures.immediateFuture(rpcResult); } - protected Builder getServiceData(String svcOperation) { + protected NbrlistChangeNotificationOutputBuilder getServiceData(String svcOperation) { switch (svcOperation) { case NBRLIST_CHANGE_NOTIFICATION: return new NbrlistChangeNotificationOutputBuilder(); -- cgit 1.2.3-korg