Interface BestpathSelection

  • All Superinterfaces:
    org.opendaylight.yangtools.yang.binding.ChoiceIn<Bestpath>, org.opendaylight.yangtools.yang.binding.DataContainer
    All Known Subinterfaces:
    AsPath, CompareRouterid, CostCommunity, IgpMetric, MadConfed

    public interface BestpathSelection
    extends org.opendaylight.yangtools.yang.binding.ChoiceIn<Bestpath>

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

     choice bestpath-selection {
       case as-path {
         leaf ignore-as-path {
           type boolean;
           default false;
         }
       }
       case compare-routerid {
         leaf ignore-routerid {
           type boolean;
           default false;
         }
       }
       case cost-community {
         leaf ignore-cost-community {
           type boolean;
           default false;
         }
       }
       case igp-metric {
         leaf ignore-igp-metric {
           type boolean;
           default false;
         }
       }
       case mad-confed {
         leaf enable {
           type boolean;
           default false;
         }
         leaf missing-as-worst {
           type boolean;
           default false;
         }
       }
     }
     
    The schema path to identify an instance is bgp/bgp-af-config/bestpath/bestpath-selection
    • 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