public interface IgpNodeAttributes extends ChildOf<IgpNodeAttributes>, Augmentable<IgpNodeAttributes>
This class represents the following YANG schema fragment defined in module l3-unicast-igp-topology
container igp-node-attributes { leaf name { type inet:domain-name; } leaf-list flag { type flag-type; } leaf-list router-id { type inet:ip-address; } list prefix { key prefix; uses igp-prefix-attributes; } }The schema path to identify an instance is l3-unicast-igp-topology/igp-node-attributes/igp-node-attributes
To create instances of this class use IgpNodeAttributesBuilder
.
IgpNodeAttributesBuilder
Modifier and Type | Field and Description |
---|---|
static org.opendaylight.yangtools.yang.common.QName |
QNAME |
Modifier and Type | Method and Description |
---|---|
@Nullable List<Class<? extends FlagIdentity>> |
getFlag()
Node operational flags
|
@Nullable DomainName |
getName()
Node name
|
@Nullable List<Prefix> |
getPrefix() |
@Nullable List<IpAddress> |
getRouterId()
Router-id for the node
|
default @NonNull List<Prefix> |
nonnullPrefix() |
getImplementedInterface
augmentation
@Nullable DomainName getName()
org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev130715.DomainName
name
, or null
if not present@Nullable List<Class<? extends FlagIdentity>> getFlag()
java.util.List
flag
, or null
if not present@Nullable List<IpAddress> getRouterId()
java.util.List
routerId
, or null
if not presentCopyright © 2019 OpenDaylight. All rights reserved.