public interface TedNodeAttributes extends DataObject
This class represents the following YANG schema fragment defined in module ted
grouping ted-node-attributes { leaf te-router-id-ipv4 { type inet:ipv4-address; } leaf te-router-id-ipv6 { type inet:ipv6-address; } list ipv4-local-address { key ipv4-prefix; leaf ipv4-prefix { type inet:ipv4-prefix; } } list ipv6-local-address { key ipv6-prefix; leaf ipv6-prefix { type inet:ipv6-prefix; } leaf prefix-option { type uint8; } } leaf pcc-capabilities { type pcc-capabilities; } }The schema path to identify an instance is ted/ted-node-attributes
Modifier and Type | Field and Description |
---|---|
static org.opendaylight.yangtools.yang.common.QName |
QNAME |
Modifier and Type | Method and Description |
---|---|
@Nullable List<Ipv4LocalAddress> |
getIpv4LocalAddress()
List of IPv4 Local Address(OSPF).
|
@Nullable List<Ipv6LocalAddress> |
getIpv6LocalAddress()
List of IPv6 Local Address.
|
@Nullable PccCapabilities |
getPccCapabilities()
OSPF/ISIS PCC capabilities
|
@Nullable Ipv4Address |
getTeRouterIdIpv4()
Globally unique IPv4 Traffic Engineering Router ID.
|
@Nullable Ipv6Address |
getTeRouterIdIpv6()
Globally unique IPv6 Traffic Engineering Router ID
|
default @NonNull List<Ipv4LocalAddress> |
nonnullIpv4LocalAddress() |
default @NonNull List<Ipv6LocalAddress> |
nonnullIpv6LocalAddress() |
getImplementedInterface
@Nullable Ipv4Address getTeRouterIdIpv4()
org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev130715.Ipv4Address
teRouterIdIpv4
, or null
if not present@Nullable Ipv6Address getTeRouterIdIpv6()
org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev130715.Ipv6Address
teRouterIdIpv6
, or null
if not present@Nullable List<Ipv4LocalAddress> getIpv4LocalAddress()
java.util.List
ipv4LocalAddress
, or null
if not presentdefault @NonNull List<Ipv4LocalAddress> nonnullIpv4LocalAddress()
java.util.List
ipv4LocalAddress
, or an empty list if it is not present@Nullable List<Ipv6LocalAddress> getIpv6LocalAddress()
java.util.List
ipv6LocalAddress
, or null
if not presentdefault @NonNull List<Ipv6LocalAddress> nonnullIpv6LocalAddress()
java.util.List
ipv6LocalAddress
, or an empty list if it is not present@Nullable PccCapabilities getPccCapabilities()
org.opendaylight.yang.gen.v1.urn.tbd.params.xml.ns.yang.network.ted.rev131021.PccCapabilities
pccCapabilities
, or null
if not presentCopyright © 2019 OpenDaylight. All rights reserved.