Interface LocalGenericSettings
-
- All Superinterfaces:
org.opendaylight.yangtools.yang.binding.BindingObject,org.opendaylight.yangtools.yang.binding.DataContainer,org.opendaylight.yangtools.yang.binding.DataObject
- All Known Subinterfaces:
Config,Config,LocalAggregateConfig,LocalStaticConfig,State,State
@Generated("mdsal-binding-generator") public interface LocalGenericSettings extends org.opendaylight.yangtools.yang.binding.DataObject
Generic options that can be set on local routes When they are definedThis class represents the following YANG schema fragment defined in module openconfig-local-routing
grouping local-generic-settings { leaf set-tag { type pt:tag-type; } }The schema path to identify an instance is openconfig-local-routinglocal-generic-settings
-
-
Field Summary
Fields Modifier and Type Field Description static @NonNull org.opendaylight.yangtools.yang.common.QNameQNAME
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description TagTypegetSetTag()Return setTag, ornullif it is not present.Class<? extends LocalGenericSettings>implementedInterface()default @NonNull TagTyperequireSetTag()Return setTag, guaranteed to be non-null.
-
-
-
Method Detail
-
implementedInterface
Class<? extends LocalGenericSettings> implementedInterface()
- Specified by:
implementedInterfacein interfaceorg.opendaylight.yangtools.yang.binding.DataContainer- Specified by:
implementedInterfacein interfaceorg.opendaylight.yangtools.yang.binding.DataObject
-
getSetTag
TagType getSetTag()
Return setTag, ornullif it is not present.Set a generic tag value on the route. This tag can be used for filtering routes that are distributed to other routing protocols.- Returns:
TagTypesetTag, ornullif it is not present.
-
requireSetTag
default @NonNull TagType requireSetTag()
Return setTag, guaranteed to be non-null.Set a generic tag value on the route. This tag can be used for filtering routes that are distributed to other routing protocols.- Returns:
TagTypesetTag, guaranteed to be non-null.- Throws:
NoSuchElementException- if setTag is not present
-
-