Interface Prefixes

  • All Superinterfaces:
    org.opendaylight.yangtools.yang.binding.Augmentable<Prefixes>, org.opendaylight.yangtools.yang.binding.BindingObject, org.opendaylight.yangtools.yang.binding.ChildOf<VpnIds>, org.opendaylight.yangtools.yang.binding.DataContainer, org.opendaylight.yangtools.yang.binding.DataObject, org.opendaylight.yangtools.yang.binding.Identifiable<PrefixesKey>, NetworkAttributes

    public interface Prefixes
    extends org.opendaylight.yangtools.yang.binding.ChildOf<VpnIds>, org.opendaylight.yangtools.yang.binding.Augmentable<Prefixes>, NetworkAttributes, org.opendaylight.yangtools.yang.binding.Identifiable<PrefixesKey>

    This class represents the following YANG schema fragment defined in module odl-l3vpn

     list prefixes {
       key ip_address;
       leaf ip_address {
         type string;
       }
       leaf dpnId {
         type uint64;
       }
       leaf vpn-interface-name {
         type string;
       }
       uses nvpn:network-attributes;
       leaf prefix-cue {
         type enumeration {
           enum none {
             value 0;
           }
           enum nat {
             value 1;
           }
           enum phys-net-func {
             value 2;
           }
           enum subnet-route {
             value 3;
           }
         }
         default none;
       }
     }
     
    The schema path to identify an instance is odl-l3vpn/prefix-to-interface/vpn-ids/prefixes

    To create instances of this class use PrefixesBuilder.

    See Also:
    PrefixesBuilder, PrefixesKey
    • Field Detail

      • QNAME

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

      • implementedInterface

        default java.lang.Class<Prefixes> implementedInterface()
        Specified by:
        implementedInterface in interface org.opendaylight.yangtools.yang.binding.DataContainer
        Specified by:
        implementedInterface in interface org.opendaylight.yangtools.yang.binding.DataObject
        Specified by:
        implementedInterface in interface NetworkAttributes
      • getIpAddress

        @Nullable java.lang.String getIpAddress()
        Returns:
        java.lang.String ipAddress, or null if not present
      • getDpnId

        @Nullable org.opendaylight.yangtools.yang.common.Uint64 getDpnId()
        Returns:
        org.opendaylight.yangtools.yang.common.Uint64 dpnId, or null if not present
      • getVpnInterfaceName

        @Nullable java.lang.String getVpnInterfaceName()
        Returns:
        java.lang.String vpnInterfaceName, or null if not present
      • getPrefixCue

        @Nullable Prefixes.PrefixCue getPrefixCue()
        Returns:
        org.opendaylight.yang.gen.v1.urn.opendaylight.netvirt.l3vpn.rev130911.prefix.to._interface.vpn.ids.Prefixes.PrefixCue prefixCue, or null if not present
      • key

        PrefixesKey key()
        Specified by:
        key in interface org.opendaylight.yangtools.yang.binding.Identifiable<PrefixesKey>