Interface Protocol

  • All Superinterfaces:
    org.opendaylight.yangtools.yang.binding.ChoiceIn<Redistribute>, org.opendaylight.yangtools.yang.binding.DataContainer
    All Known Subinterfaces:
    Bgp, Connected, Eigrp, Isis, Mobile, Ospf, Rip, Static

    public interface Protocol
    extends org.opendaylight.yangtools.yang.binding.ChoiceIn<Redistribute>

    This class represents the following YANG schema fragment defined in module bgp

     choice protocol {
       case bgp {
         leaf enable-bgp {
           type boolean;
         }
       }
       case ospf {
         leaf enable-ospf {
           type boolean;
         }
       }
       case isis {
         leaf enable-isis {
           type boolean;
         }
       }
       case connected {
         leaf enable-connected {
           type boolean;
         }
       }
       case eigrp {
         leaf enable-eigrp {
           type boolean;
         }
       }
       case mobile {
         leaf enable-mobile {
           type boolean;
         }
       }
       case static {
         leaf enable-static {
           type boolean;
         }
       }
       case rip {
         leaf enable-rip {
           type boolean;
         }
       }
     }
     
    The schema path to identify an instance is bgp/redistribute/protocol
    • Field Summary

      Fields 
      Modifier and Type Field Description
      static @NonNull org.opendaylight.yangtools.yang.common.QName QNAME  
    • Method Summary

      • Methods inherited from interface org.opendaylight.yangtools.yang.binding.DataContainer

        implementedInterface
    • Field Detail

      • QNAME

        static final @NonNull org.opendaylight.yangtools.yang.common.QName QNAME