Interface VlanLogicalSingleTaggedListConfig
-
- 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 VlanLogicalSingleTaggedListConfig extends org.opendaylight.yangtools.yang.binding.DataObject
Specifies single-tagged packets with a list of VLAN identifiers.This class represents the following YANG schema fragment defined in module openconfig-vlan
grouping vlan-logical-single-tagged-list-config { leaf-list vlan-ids { type oc-vlan-types:vlan-id; } }
-
-
Field Summary
Fields Modifier and Type Field Description static @NonNull org.opendaylight.yangtools.yang.common.QNameQNAMEYANG identifier of the statement represented by this class.
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description @Nullable Set<VlanId>getVlanIds()Return vlanIds, ornullif it is not present.Class<? extends VlanLogicalSingleTaggedListConfig>implementedInterface()default @NonNull Set<VlanId>requireVlanIds()Return vlanIds, guaranteed to be non-null.
-
-
-
Method Detail
-
implementedInterface
Class<? extends VlanLogicalSingleTaggedListConfig> implementedInterface()
- Specified by:
implementedInterfacein interfaceorg.opendaylight.yangtools.yang.binding.DataContainer- Specified by:
implementedInterfacein interfaceorg.opendaylight.yangtools.yang.binding.DataObject
-
getVlanIds
@Nullable Set<VlanId> getVlanIds()
Return vlanIds, ornullif it is not present.VLAN identifiers for single-tagged packets.- Returns:
Set<VlanId>vlanIds, ornullif it is not present.
-
requireVlanIds
default @NonNull Set<VlanId> requireVlanIds()
Return vlanIds, guaranteed to be non-null.VLAN identifiers for single-tagged packets.- Returns:
Set<VlanId>vlanIds, guaranteed to be non-null.- Throws:
NoSuchElementException- if vlanIds is not present
-
-