Interface BaseNetconfNotificationListener

  • All Known Subinterfaces:
    BaseNotificationPublisherRegistration

    public interface BaseNetconfNotificationListener
    Listener for base netconf notifications defined in https://tools.ietf.org/html/rfc6470. This listener uses generated classes from yang model defined in RFC6470. It alleviates the provisioning of base netconf notifications from the code.
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      void onCapabilityChanged​(org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.netconf.notifications.rev120206.NetconfCapabilityChange capabilityChange)
      Callback used to notify about a change in used capabilities.
      void onSessionEnded​(org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.netconf.notifications.rev120206.NetconfSessionEnd end)
      Callback used to notify about netconf session end.
      void onSessionStarted​(org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.netconf.notifications.rev120206.NetconfSessionStart start)
      Callback used to notify about netconf session start.
    • Method Detail

      • onCapabilityChanged

        void onCapabilityChanged​(org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.netconf.notifications.rev120206.NetconfCapabilityChange capabilityChange)
        Callback used to notify about a change in used capabilities.
      • onSessionStarted

        void onSessionStarted​(org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.netconf.notifications.rev120206.NetconfSessionStart start)
        Callback used to notify about netconf session start.
      • onSessionEnded

        void onSessionEnded​(org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.netconf.notifications.rev120206.NetconfSessionEnd end)
        Callback used to notify about netconf session end.