public interface SupportingNode extends ChildOf<Node>, Augmentable<SupportingNode>, Identifiable<SupportingNodeKey>
This class represents the following YANG schema fragment defined in module ietf-network-state
list supporting-node {
key "network-ref node-ref";
leaf network-ref {
type leafref {
path ../../../nw-s:supporting-network/nw-s:network-ref;
require-instance false;
}
}
leaf node-ref {
type leafref {
path /nw-s:networks/nw-s:network/nw-s:node/nw-s:node-id;
require-instance false;
}
}
}
The schema path to identify an instance is
ietf-network-state/networks/network/node/supporting-node
To create instances of this class use SupportingNodeBuilder.
SupportingNodeBuilder,
SupportingNodeKey| Modifier and Type | Field and Description |
|---|---|
static org.opendaylight.yangtools.yang.common.QName |
QNAME |
| Modifier and Type | Method and Description |
|---|---|
@Nullable NetworkId |
getNetworkRef()
References the underlay network of which theunderlay node is a part.
|
@Nullable NodeId |
getNodeRef()
References the underlay node itself.
|
SupportingNodeKey |
key()
Returns an unique key for the object.
|
getImplementedInterfaceaugmentation@Nullable NetworkId getNetworkRef()
org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.network.rev180226.NetworkId networkRef, or null if not present@Nullable NodeId getNodeRef()
org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.network.rev180226.NodeId nodeRef, or null if not presentSupportingNodeKey key()
Identifiablekey in interface Identifiable<SupportingNodeKey>Copyright © 2019 OpenDaylight. All rights reserved.