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

    @Generated("mdsal-binding-generator")
    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
      • bindingHashCode

        static int bindingHashCode​(@NonNull Prefixes obj)
        Default implementation of Object.hashCode() contract for this interface. Implementations of this interface are encouraged to defer to this method to get consistent hashing results across all implementations.
        Parameters:
        obj - Object for which to generate hashCode() result.
        Returns:
        Hash code value of data modeled by this interface.
        Throws:
        java.lang.NullPointerException - if obj is null
      • bindingEquals

        static boolean bindingEquals​(@NonNull Prefixes thisObj,
                                     java.lang.Object obj)
        Default implementation of Object.equals(Object) contract for this interface. Implementations of this interface are encouraged to defer to this method to get consistent equality results across all implementations.
        Parameters:
        thisObj - Object acting as the receiver of equals invocation
        obj - Object acting as argument to equals invocation
        Returns:
        True if thisObj and obj are considered equal
        Throws:
        java.lang.NullPointerException - if thisObj is null
      • bindingToString

        static java.lang.String bindingToString​(@NonNull Prefixes obj)
        Default implementation of Object.toString() contract for this interface. Implementations of this interface are encouraged to defer to this method to get consistent string representations across all implementations.
        Parameters:
        obj - Object for which to generate toString() result.
        Returns:
        String value of data modeled by this interface.
        Throws:
        java.lang.NullPointerException - if obj is null
      • getIpAddress

        java.lang.String getIpAddress()
        Return ipAddress, or null if it is not present.
        Returns:
        java.lang.String ipAddress, or null if it is not present.
      • getDpnId

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

        java.lang.String getVpnInterfaceName()
        Return vpnInterfaceName, or null if it is not present.
        Returns:
        java.lang.String vpnInterfaceName, or null if it is not present.
      • getPrefixCue

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

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