public interface Neighbor extends ChildOf<Ipv6>, Augmentable<Neighbor>, Identifiable<NeighborKey>
This class represents the following YANG schema fragment defined in module ietf-ip
list neighbor { key ip; leaf ip { type inet:ipv6-address-no-zone; } leaf link-layer-address { type yang:phys-address; } leaf origin { type neighbor-origin; } leaf is-router { type empty; } leaf state { type enumeration { enum incomplete { } enum reachable { } enum stale { } enum delay { } enum probe { } } } }The schema path to identify an instance is ietf-ip/interfaces-state/interface/(urn:ietf:params:xml:ns:yang:ietf-ip?revision=2014-06-16)ipv6/neighbor
To create instances of this class use NeighborBuilder
.
NeighborBuilder
,
NeighborKey
Modifier and Type | Interface and Description |
---|---|
static class |
Neighbor.State |
Modifier and Type | Field and Description |
---|---|
static org.opendaylight.yangtools.yang.common.QName |
QNAME |
Modifier and Type | Method and Description |
---|---|
@Nullable Ipv6AddressNoZone |
getIp()
The IPv6 address of the neighbor node.
|
@Nullable PhysAddress |
getLinkLayerAddress()
The link-layer address of the neighbor node.
|
@Nullable NeighborOrigin |
getOrigin()
The origin of this neighbor entry.
|
@Nullable Neighbor.State |
getState()
The Neighbor Unreachability Detection state of thisentry.
|
@Nullable Boolean |
isIsRouter()
Indicates that the neighbor node acts as a router.
|
NeighborKey |
key()
Returns an unique key for the object.
|
getImplementedInterface
augmentation
@Nullable Ipv6AddressNoZone getIp()
org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev130715.Ipv6AddressNoZone
ip
, or null
if not present@Nullable PhysAddress getLinkLayerAddress()
org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.yang.types.rev130715.PhysAddress
linkLayerAddress
, or null
if not present@Nullable NeighborOrigin getOrigin()
org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.ip.rev140616.NeighborOrigin
origin
, or null
if not present@Nullable Boolean isIsRouter()
java.lang.Boolean
isRouter
, or null
if not present@Nullable Neighbor.State getState()
org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.ip.rev140616.interfaces.state._interface.ipv6.Neighbor.State
state
, or null
if not presentNeighborKey key()
Identifiable
key
in interface Identifiable<NeighborKey>
Copyright © 2019 OpenDaylight. All rights reserved.