Interface VlanTop

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

    @Generated("mdsal-binding-generator")
    public interface VlanTop
    extends org.opendaylight.yangtools.yang.binding.DataObject
    Top-level grouping for VLAN configuration

    This class represents the following YANG schema fragment defined in module openconfig-vlan

     grouping vlan-top {
       container vlans {
         list vlan {
           key vlan-id;
           leaf vlan-id {
             type leafref {
               path ../config/vlan-id;
             }
           }
           container config {
             uses vlan-config;
           }
           container state {
             config false;
             uses vlan-config;
             uses vlan-state;
           }
           uses vlan-members-state;
         }
       }
     }
     
    • Field Detail

      • QNAME

        static final @NonNull org.opendaylight.yangtools.yang.common.QName QNAME
        YANG identifier of the statement represented by this class.
    • Method Detail

      • implementedInterface

        Class<? extends VlanTop> implementedInterface()
        Specified by:
        implementedInterface in interface org.opendaylight.yangtools.yang.binding.DataContainer
        Specified by:
        implementedInterface in interface org.opendaylight.yangtools.yang.binding.DataObject
      • getVlans

        Vlans getVlans()
        Return vlans, or null if it is not present.
             
                 Container for VLAN configuration and state variables
             
         
        Returns:
        Vlans vlans, or null if it is not present.