Interface VlanLogicalDoubleTaggedInnerListConfig

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

    @Generated("mdsal-binding-generator")
    public interface VlanLogicalDoubleTaggedInnerListConfig
    extends org.opendaylight.yangtools.yang.binding.DataObject
    Specifies double-tagged packets with an inner list and outer exact VLAN identifiers.

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

     grouping vlan-logical-double-tagged-inner-list-config {
       leaf-list inner-vlan-ids {
         type oc-vlan-types:vlan-id;
       }
       leaf outer-vlan-id {
         type oc-vlan-types:vlan-id;
       }
     }
     
    The schema path to identify an instance is openconfig-vlanvlan-logical-double-tagged-inner-list-config
    • Field Detail

      • QNAME

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

      • implementedInterface

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

        @Nullable List<VlanId> getInnerVlanIds()
        Return innerVlanIds, or null if it is not present.
             
                 Inner VLAN identifiers for double-tagged packets.
             
         
        Returns:
        List<VlanId> innerVlanIds, or null if it is not present.
      • requireInnerVlanIds

        default @NonNull List<VlanId> requireInnerVlanIds()
        Return innerVlanIds, guaranteed to be non-null.
             
                 Inner VLAN identifiers for double-tagged packets.
             
         
        Returns:
        List<VlanId> innerVlanIds, guaranteed to be non-null.
        Throws:
        NoSuchElementException - if innerVlanIds is not present
      • getOuterVlanId

        VlanId getOuterVlanId()
        Return outerVlanId, or null if it is not present.
             
                 Outer VLAN identifier for double-tagged packets.
             
         
        Returns:
        VlanId outerVlanId, or null if it is not present.
      • requireOuterVlanId

        default @NonNull VlanId requireOuterVlanId()
        Return outerVlanId, guaranteed to be non-null.
             
                 Outer VLAN identifier for double-tagged packets.
             
         
        Returns:
        VlanId outerVlanId, guaranteed to be non-null.
        Throws:
        NoSuchElementException - if outerVlanId is not present