public interface OspfNodeAttributes extends ChildOf<OspfNodeAttributes>, Augmentable<OspfNodeAttributes>
This class represents the following YANG schema fragment defined in module ospf-topology
container ospf-node-attributes { choice router-type { case abr { leaf abr { type empty; } } case asbr { leaf asbr { type empty; } } case internal { leaf internal { type empty; } } case pseudonode { leaf pseudonode { type empty; } } } leaf dr-interface-id { when ../router-type/pseudonode; default 0; type uint32; } leaf-list multi-topology-id { max-elements 128; type uint8 { range 0..127; } } leaf capabilities { type bits { bit graceful-restart-capable { position 0; } bit graceful-restart-helper { position 1; } bit stub-router-support { position 2; } bit traffic-engineering-support { position 3; } bit point-to-point-over-lan { position 4; } bit experimental-te { position 5; } } } container ted { uses ted:ted-node-attributes; } }The schema path to identify an instance is ospf-topology/ospf-node-attributes/ospf-node-attributes
To create instances of this class use OspfNodeAttributesBuilder
.
OspfNodeAttributesBuilder
Modifier and Type | Interface and Description |
---|---|
static class |
OspfNodeAttributes.Capabilities |
Modifier and Type | Field and Description |
---|---|
static org.opendaylight.yangtools.yang.common.QName |
QNAME |
Modifier and Type | Method and Description |
---|---|
@Nullable OspfNodeAttributes.Capabilities |
getCapabilities()
OSPF capabilities as bit vector.
|
@Nullable Long |
getDrInterfaceId()
For pseudonodes, DR interface-id
|
@Nullable List<Short> |
getMultiTopologyId()
List of Multi-Topology Identifier up-to 128 (0-127).
|
@Nullable RouterType |
getRouterType() |
@Nullable Ted |
getTed() |
getImplementedInterface
augmentation
@Nullable RouterType getRouterType()
org.opendaylight.yang.gen.v1.urn.tbd.params.xml.ns.yang.ospf.topology.rev131021.ospf.node.attributes.ospf.node.attributes.RouterType
routerType
, or null
if not present@Nullable Long getDrInterfaceId()
java.lang.Long
drInterfaceId
, or null
if not present@Nullable List<Short> getMultiTopologyId()
java.util.List
multiTopologyId
, or null
if not present@Nullable OspfNodeAttributes.Capabilities getCapabilities()
org.opendaylight.yang.gen.v1.urn.tbd.params.xml.ns.yang.ospf.topology.rev131021.ospf.node.attributes.OspfNodeAttributes.Capabilities
capabilities
, or null
if not present@Nullable Ted getTed()
org.opendaylight.yang.gen.v1.urn.tbd.params.xml.ns.yang.ospf.topology.rev131021.ospf.node.attributes.ospf.node.attributes.Ted
ted
, or null
if not presentCopyright © 2019 OpenDaylight. All rights reserved.