Interface VlanLogicalDoubleTaggedOuterListConfig

  • 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 VlanLogicalDoubleTaggedOuterListConfig
    extends org.opendaylight.yangtools.yang.binding.DataObject
    Specifies double-tagged packets with an inner exact and outer list of VLAN identifiers.

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

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

      • QNAME

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

      • implementedInterface

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

        VlanId getInnerVlanId()
        Return innerVlanId, or null if it is not present.
             
                 Inner VLAN identifier for double-tagged packets.
             
         
        Returns:
        VlanId innerVlanId, or null if it is not present.
      • requireInnerVlanId

        default @NonNull VlanId requireInnerVlanId()
        Return innerVlanId, guaranteed to be non-null.
             
                 Inner VLAN identifier for double-tagged packets.
             
         
        Returns:
        VlanId innerVlanId, guaranteed to be non-null.
        Throws:
        NoSuchElementException - if innerVlanId is not present
      • getOuterVlanIds

        @Nullable List<VlanId> getOuterVlanIds()
        Return outerVlanIds, or null if it is not present.
             
                 Outer VLAN identifiers for double-tagged packets.
             
         
        Returns:
        List<VlanId> outerVlanIds, or null if it is not present.
      • requireOuterVlanIds

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