Interface BaseNetconfNotificationListener
-
- All Known Subinterfaces:
BaseNotificationPublisherRegistration
public interface BaseNetconfNotificationListenerListener 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 voidonCapabilityChanged(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.voidonSessionEnded(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.voidonSessionStarted(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.
-
-