public interface Networks extends ChildOf<IetfNetworkData>, Augmentable<Networks>
This class represents the following YANG schema fragment defined in module ietf-network
container networks { list network { key network-id; leaf network-id { type network-id; } container network-types { } list supporting-network { key network-ref; leaf network-ref { type leafref { path /nw:networks/nw:network/nw:network-id; require-instance false; } } } 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
To create instances of this class use NetworksBuilder
.
NetworksBuilder
Modifier and Type | Field and Description |
---|---|
static org.opendaylight.yangtools.yang.common.QName |
QNAME |
Modifier and Type | Method and Description |
---|---|
@Nullable List<Network> |
getNetwork()
Describes a network.A network typically contains an inventory of
nodes,topological information (augmented through thenetwork-topology data
model), and layering information.
|
default @NonNull List<Network> |
nonnullNetwork() |
getImplementedInterface
augmentation
Copyright © 2019 OpenDaylight. All rights reserved.