public interface Node extends ChildOf<Network>, Augmentable<Node>, Identifiable<NodeKey>
This class represents the following YANG schema fragment defined in module ietf-network
list node { key node-id; leaf node-id { type node-id; } list supporting-node { key "network-ref node-ref"; leaf network-ref { type leafref { path ../../../nw:supporting-network/nw:network-ref; require-instance false; } } leaf node-ref { type leafref { path /nw:networks/nw:network/nw:node/nw:node-id; require-instance false; } } } }The schema path to identify an instance is ietf-network/networks/network/node
To create instances of this class use NodeBuilder
.
NodeBuilder
,
NodeKey
Modifier and Type | Field and Description |
---|---|
static org.opendaylight.yangtools.yang.common.QName |
QNAME |
Modifier and Type | Method and Description |
---|---|
@Nullable NodeId |
getNodeId()
Uniquely identifies a node within the containingnetwork.
|
@Nullable List<SupportingNode> |
getSupportingNode()
Represents another node that is in an underlay networkand that supports this
node.
|
NodeKey |
key()
Returns an unique key for the object.
|
default @NonNull List<SupportingNode> |
nonnullSupportingNode() |
getImplementedInterface
augmentation
@Nullable NodeId getNodeId()
org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.network.rev180226.NodeId
nodeId
, or null
if not present@Nullable List<SupportingNode> getSupportingNode()
java.util.List
supportingNode
, or null
if not presentdefault @NonNull List<SupportingNode> nonnullSupportingNode()
java.util.List
supportingNode
, or an empty list if it is not presentNodeKey key()
Identifiable
key
in interface Identifiable<NodeKey>
Copyright © 2019 OpenDaylight. All rights reserved.