public interface TerminationPoint extends ChildOf<Node1>, Augmentable<TerminationPoint>, Identifiable<TerminationPointKey>
This class represents the following YANG schema fragment defined in module ietf-network-topology-state
list termination-point { key tp-id; leaf tp-id { type nt:tp-id; } list supporting-termination-point { key "network-ref node-ref tp-ref"; leaf network-ref { type leafref { path ../../../nw-s:supporting-node/nw-s:network-ref; require-instance false; } } leaf node-ref { type leafref { path ../../../nw-s:supporting-node/nw-s:node-ref; require-instance false; } } leaf tp-ref { type leafref { path /nw-s:networks/nw-s:network[nw-s:network-id=current()/../network-ref]/nw-s:node[nw-s:node-id=current()/../node-ref]/termination-point/tp-id; require-instance false; } } } }The schema path to identify an instance is ietf-network-topology-state/networks/network/node/(urn:ietf:params:xml:ns:yang:ietf-network-topology-state?revision=2018-02-26)termination-point
To create instances of this class use TerminationPointBuilder
.
TerminationPointBuilder
,
TerminationPointKey
Modifier and Type | Field and Description |
---|---|
static org.opendaylight.yangtools.yang.common.QName |
QNAME |
Modifier and Type | Method and Description |
---|---|
@Nullable List<SupportingTerminationPoint> |
getSupportingTerminationPoint()
This list identifies any termination points on which agiven termination point
depends or onto which it maps.Those termination points will themselves be
containedin a supporting node.
|
@Nullable TpId |
getTpId()
Termination point identifier.
|
TerminationPointKey |
key()
Returns an unique key for the object.
|
default @NonNull List<SupportingTerminationPoint> |
nonnullSupportingTerminationPoint() |
getImplementedInterface
augmentation
@Nullable TpId getTpId()
org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.network.topology.rev180226.TpId
tpId
, or null
if not present@Nullable List<SupportingTerminationPoint> getSupportingTerminationPoint()
java.util.List
supportingTerminationPoint
, or null
if not presentdefault @NonNull List<SupportingTerminationPoint> nonnullSupportingTerminationPoint()
java.util.List
supportingTerminationPoint
, or an empty list if it is not presentTerminationPointKey key()
Identifiable
key
in interface Identifiable<TerminationPointKey>
Copyright © 2019 OpenDaylight. All rights reserved.