Interface VxlanBaseAttributes

  • All Superinterfaces:
    org.opendaylight.yangtools.yang.binding.BindingObject, org.opendaylight.yangtools.yang.binding.DataContainer, org.opendaylight.yangtools.yang.binding.DataObject
    All Known Subinterfaces:
    Vxlan, Vxlan

    @Generated("mdsal-binding-generator")
    public interface VxlanBaseAttributes
    extends org.opendaylight.yangtools.yang.binding.DataObject

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

     grouping vxlan-base-attributes {
       leaf src {
         type inet:ip-address;
       }
       leaf dst {
         type inet:ip-address;
       }
       leaf vni {
         type vxlan-vni;
       }
       leaf encap-vrf-id {
         type uint32;
       }
       leaf decap-next {
         type vxlan-decap-node;
         default l2-input;
       }
     }
     
    The schema path to identify an instance is v3po/vxlan-base-attributes
    • Field Summary

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

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      java.lang.Class<? extends DecapNode> getDecapNext()
      Return decapNext, or null if it is not present.
      org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev130715.IpAddress getDst()
      Return dst, or null if it is not present.
      org.opendaylight.yangtools.yang.common.Uint32 getEncapVrfId()
      Return encapVrfId, or null if it is not present.
      org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev130715.IpAddress getSrc()
      Return src, or null if it is not present.
      VxlanVni getVni()
      Return vni, or null if it is not present.
      java.lang.Class<? extends VxlanBaseAttributes> implementedInterface()  
    • Field Detail

      • QNAME

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

      • implementedInterface

        java.lang.Class<? extends VxlanBaseAttributes> implementedInterface()
        Specified by:
        implementedInterface in interface org.opendaylight.yangtools.yang.binding.DataContainer
        Specified by:
        implementedInterface in interface org.opendaylight.yangtools.yang.binding.DataObject
      • getSrc

        org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev130715.IpAddress getSrc()
        Return src, or null if it is not present.
        Returns:
        org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev130715.IpAddress src, or null if it is not present.
      • getDst

        org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev130715.IpAddress getDst()
        Return dst, or null if it is not present.
        Returns:
        org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev130715.IpAddress dst, or null if it is not present.
      • getVni

        VxlanVni getVni()
        Return vni, or null if it is not present.
        Returns:
        org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.v3po.rev170607.VxlanVni vni, or null if it is not present.
      • getEncapVrfId

        org.opendaylight.yangtools.yang.common.Uint32 getEncapVrfId()
        Return encapVrfId, or null if it is not present.
        Returns:
        org.opendaylight.yangtools.yang.common.Uint32 encapVrfId, or null if it is not present.
      • getDecapNext

        java.lang.Class<? extends DecapNode> getDecapNext()
        Return decapNext, or null if it is not present.
        Returns:
        java.lang.Class decapNext, or null if it is not present.