public interface LinkAttributes extends DataObject
This class represents the following YANG schema fragment defined in module network-topology
grouping link-attributes { leaf link-id { type link-id; } container source { leaf source-node { type node-ref; } leaf source-tp { type tp-ref; } } container destination { leaf dest-node { type node-ref; } leaf dest-tp { type tp-ref; } } list supporting-link { key link-ref; leaf link-ref { type link-ref; } } }The schema path to identify an instance is network-topology/link-attributes
Modifier and Type | Field and Description |
---|---|
static org.opendaylight.yangtools.yang.common.QName |
QNAME |
Modifier and Type | Method and Description |
---|---|
@Nullable Destination |
getDestination() |
@Nullable LinkId |
getLinkId()
The identifier of a link in the topology.A link is specific to a topology to
which it belongs.
|
@Nullable Source |
getSource() |
@Nullable List<SupportingLink> |
getSupportingLink() |
default @NonNull List<SupportingLink> |
nonnullSupportingLink() |
getImplementedInterface
@Nullable LinkId getLinkId()
org.opendaylight.yang.gen.v1.urn.tbd.params.xml.ns.yang.network.topology.rev131021.LinkId
linkId
, or null
if not present@Nullable Source getSource()
org.opendaylight.yang.gen.v1.urn.tbd.params.xml.ns.yang.network.topology.rev131021.link.attributes.Source
source
, or null
if not present@Nullable Destination getDestination()
org.opendaylight.yang.gen.v1.urn.tbd.params.xml.ns.yang.network.topology.rev131021.link.attributes.Destination
destination
, or null
if not present@Nullable List<SupportingLink> getSupportingLink()
java.util.List
supportingLink
, or null
if not presentdefault @NonNull List<SupportingLink> nonnullSupportingLink()
java.util.List
supportingLink
, or an empty list if it is not presentCopyright © 2019 OpenDaylight. All rights reserved.