Interface VrfsContainer

  • All Superinterfaces:
    org.opendaylight.yangtools.yang.binding.Augmentable<VrfsContainer>, org.opendaylight.yangtools.yang.binding.BindingObject, org.opendaylight.yangtools.yang.binding.ChildOf<Bgp>, org.opendaylight.yangtools.yang.binding.DataContainer, org.opendaylight.yangtools.yang.binding.DataObject

    public interface VrfsContainer
    extends org.opendaylight.yangtools.yang.binding.ChildOf<Bgp>, org.opendaylight.yangtools.yang.binding.Augmentable<VrfsContainer>

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

     container vrfsContainer {
       list vrfs {
         key rd;
         leaf rd {
           type string;
         }
         list address-families-vrf {
           key "afi safi";
           leaf afi {
             type uint32;
           }
           leaf safi {
             type uint32;
           }
         }
         leaf-list import-rts {
           type string;
         }
         leaf-list export-rts {
           type string;
         }
       }
     }
     
    The schema path to identify an instance is ebgp/bgp/vrfsContainer

    To create instances of this class use VrfsContainerBuilder.

    See Also:
    VrfsContainerBuilder
    • Field Detail

      • QNAME

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

      • implementedInterface

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

        @Nullable java.util.List<Vrfs> getVrfs()
        Returns:
        java.util.List vrfs, or null if not present
      • nonnullVrfs

        default @NonNull java.util.List<Vrfs> nonnullVrfs()
        Returns:
        java.util.List vrfs, or an empty list if it is not present