Interface OdlL3vpnListener

  • All Superinterfaces:
    java.util.EventListener, org.opendaylight.yangtools.yang.binding.NotificationListener
    All Known Implementing Classes:
    DpnInVpnChangeListener

    public interface OdlL3vpnListener
    extends org.opendaylight.yangtools.yang.binding.NotificationListener
    Interface for implementing the following YANG notifications defined in module odl-l3vpn
     notification add-dpn-event {
       container add-event-data {
         uses dpn-in-vpn-event;
       }
     }
     notification remove-dpn-event {
       container remove-event-data {
         uses dpn-in-vpn-event;
       }
     }
     notification add-interface-to-dpn-on-vpn-event {
       container add-interface-event-data {
         uses dpn-in-vpn-event;
         leaf interface-name {
           type string;
         }
         leaf vpn-id {
           type uint32;
         }
       }
     }
     notification remove-interface-from-dpn-on-vpn-event {
       container remove-interface-event-data {
         uses dpn-in-vpn-event;
         leaf interface-name {
           type string;
         }
         leaf vpn-id {
           type uint32;
         }
       }
     }