Interface IpAddressGroup

  • All Superinterfaces:
    org.opendaylight.yangtools.yang.binding.ChoiceIn<PrefixFilter>, org.opendaylight.yangtools.yang.binding.DataContainer
    All Known Subinterfaces:
    Host, IpAddress, IpRange, Prefix

    public interface IpAddressGroup
    extends org.opendaylight.yangtools.yang.binding.ChoiceIn<PrefixFilter>

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

     choice ip-address-group {
       case ip-address {
         leaf ip-address {
           type inet:ip-address;
         }
       }
       case prefix {
         leaf prefix {
           type inet:ip-prefix;
         }
       }
       case host {
         leaf ip-host-address {
           type inet:host;
         }
       }
       case ip-range {
         leaf lower {
           type inet:ip-address;
         }
         leaf upper {
           type inet:ip-address;
         }
       }
     }
     
    The schema path to identify an instance is bgp/prefix-lists/prefix-list/prefixes/prefix/prefix-filter/ip-address-group
    • 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