diff options
Diffstat (limited to 'sdnr/northbound/CMNotify/provider')
-rw-r--r-- | sdnr/northbound/CMNotify/provider/pom.xml | 2 | ||||
-rw-r--r-- | sdnr/northbound/CMNotify/provider/src/main/java/org/onap/ccsdk/features/sdnr/northbound/cmnotify/CMNotifyProvider.java | 3 |
2 files changed, 2 insertions, 3 deletions
diff --git a/sdnr/northbound/CMNotify/provider/pom.xml b/sdnr/northbound/CMNotify/provider/pom.xml index 8be984252..8c925c11e 100644 --- a/sdnr/northbound/CMNotify/provider/pom.xml +++ b/sdnr/northbound/CMNotify/provider/pom.xml @@ -25,7 +25,7 @@ <parent> <groupId>org.onap.ccsdk.parent</groupId> <artifactId>binding-parent</artifactId> - <version>2.4.0</version> + <version>2.4.1</version> <relativePath/> </parent> 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(); |