public interface IsisNodeAttributes extends ChildOf<IsisNodeAttributes>, Augmentable<IsisNodeAttributes>
This class represents the following YANG schema fragment defined in module isis-topology
container isis-node-attributes { container iso { leaf iso-system-id { type iso-system-id; } leaf iso-pseudonode-id { default 00; type iso-pseudonode-id; } } leaf-list net { max-elements 3; type iso-net-id; } leaf-list multi-topology-id { max-elements 128; type uint8 { range 0..127; } } choice router-type { case level-2 { leaf level-2 { type empty; } } case level-1 { leaf level-1 { type empty; } } case level-1-2 { leaf level-1-2 { type empty; } } } container ted { uses ted:ted-node-attributes; } }The schema path to identify an instance is isis-topology/isis-node-attributes/isis-node-attributes
To create instances of this class use IsisNodeAttributesBuilder
.
IsisNodeAttributesBuilder
Modifier and Type | Field and Description |
---|---|
static org.opendaylight.yangtools.yang.common.QName |
QNAME |
Modifier and Type | Method and Description |
---|---|
@Nullable Iso |
getIso() |
@Nullable List<Short> |
getMultiTopologyId()
List of Multi Topology Identifier upto 128 (0-127).
|
@Nullable List<IsoNetId> |
getNet() |
@Nullable RouterType |
getRouterType() |
@Nullable Ted |
getTed() |
getImplementedInterface
augmentation
@Nullable Iso getIso()
org.opendaylight.yang.gen.v1.urn.tbd.params.xml.ns.yang.network.isis.topology.rev131021.isis.node.attributes.isis.node.attributes.Iso
iso
, or null
if not present@Nullable List<Short> getMultiTopologyId()
java.util.List
multiTopologyId
, or null
if not present@Nullable RouterType getRouterType()
org.opendaylight.yang.gen.v1.urn.tbd.params.xml.ns.yang.network.isis.topology.rev131021.isis.node.attributes.isis.node.attributes.RouterType
routerType
, or null
if not present@Nullable Ted getTed()
org.opendaylight.yang.gen.v1.urn.tbd.params.xml.ns.yang.network.isis.topology.rev131021.isis.node.attributes.isis.node.attributes.Ted
ted
, or null
if not presentCopyright © 2019 OpenDaylight. All rights reserved.