Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • ODL Netconf Client related 
    • After subscription of NrtConf notification streamNetConf notification stream, using org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.netconf.notification._1._0.rev080714.NotificationsService, notifications are forwarded to the listener.
    • Related interface class: org.opendaylight.yang.gen.v1.urn.onf.params.xml.ns.yang.microwave.model.rev170324.MicrowaveModelListener extends org.opendaylight.yangtools.yang.binding.NotificationListener extends java.util.EventListener
  • ODL MDSAL DataTree related
    • After regsitration of the listern, all Data Tree changes of related elements are forwarded to the listerner.
    • Object id for nodes is specified like this: 
      private static final InstanceIdentifier<Node> NETCONF_NODE_TOPO_IID = InstanceIdentifier
      .create(NetworkTopology.class)
      .child(Topology.class, new TopologyKey(new TopologyId(TopologyNetconf.QNAME.getLocalName())))
      .child(Node.class);
    • Related interface class: org.opendaylight.controller.md.sal.binding.api.ClusteredDataTreeChangeListener<Node>

...

  • <capability>urn:onf:params:xml:ns:yang:microwave-model?module=microwave-model&amp;revision=2017-03-24&amp;features=pure-ethernet,hybrid-microwave</capability>

  • <capability>urn:ietf:params:xml:ns:netconf:notification:1.0?module=notifications&amp;revision=2008-07-14</capability>

Websocket (WS) based notifications, are provided by different services.

  • Via port 8185 the ODL MDSAL DataTree offers a WS service for changes in the DataTree, like Creation/Deletion/Change of a mountpoint.
  • Via port 8085 the 

Gliffy Diagram
nameNetConf-Notification-Handling
pagePin14

...