...
- ODL Netconf Client related
- After subscription of NrtConf notification stream, 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>
...