Include missing mapping of O-RAN fault fields
[ccsdk/features.git] / sdnr / wt / netconfnode-state-service / model / src / main / java / org / onap / ccsdk / features / sdnr / wt / netconfnodestateservice / NetconfBindingAccessor.java
index c77cf5f..fe4f683 100644 (file)
@@ -64,7 +64,16 @@ public interface NetconfBindingAccessor extends NetconfAccessor {
     void registerNotificationsStream(List<Stream> streamList);
 
     /**
-     * Register notifications stream for the connection.
+     * Register default notifications stream for the connection.
+     * @See <a href="https://tools.ietf.org/html/rfc5277">https://tools.ietf.org/html/rfc5277</a>
+     *
+     * @return progress indication
+     */
+    ListenableFuture<RpcResult<CreateSubscriptionOutput>> registerNotificationsStream();
+
+    /**
+     * Register specific notifications stream for the connection.
+     * @See <a href="https://tools.ietf.org/html/rfc5277">https://tools.ietf.org/html/rfc5277</a>
      *
      * @param streamName that should be "NETCONF" as default.
      * @return progress indication
@@ -81,4 +90,5 @@ public interface NetconfBindingAccessor extends NetconfAccessor {
     <T extends NotificationListener> ListenerRegistration<NotificationListener> doRegisterNotificationListener(
             @NonNull T listener);
 
+
 }