public interface Entry extends ChildOf<MplsLabelStack>, Augmentable<Entry>, Identifiable<EntryKey>
This class represents the following YANG schema fragment defined in module ietf-routing-types
list entry { key id; leaf id { type uint8; } leaf label { type rt-types:mpls-label; } leaf ttl { type uint8; } leaf traffic-class { type uint8 { range 0..7; } } }The schema path to identify an instance is ietf-routing-types/mpls-label-stack/mpls-label-stack/entry
To create instances of this class use EntryBuilder
.
EntryBuilder
,
EntryKey
Modifier and Type | Field and Description |
---|---|
static org.opendaylight.yangtools.yang.common.QName |
QNAME |
Modifier and Type | Method and Description |
---|---|
@Nullable Short |
getId()
Identifies the entry in a sequence of MPLS labelstack entries.
|
@Nullable MplsLabel |
getLabel()
Label value.
|
@Nullable Short |
getTrafficClass()
Traffic Class (TC).
|
@Nullable Short |
getTtl()
Time to Live (TTL).
|
EntryKey |
key()
Returns an unique key for the object.
|
getImplementedInterface
augmentation
@Nullable Short getId()
java.lang.Short
id
, or null
if not present@Nullable MplsLabel getLabel()
org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.routing.types.rev171204.MplsLabel
label
, or null
if not present@Nullable Short getTtl()
java.lang.Short
ttl
, or null
if not present@Nullable Short getTrafficClass()
java.lang.Short
trafficClass
, or null
if not presentEntryKey key()
Identifiable
key
in interface Identifiable<EntryKey>
Copyright © 2019 OpenDaylight. All rights reserved.