@Deprecated public interface Ipv4 extends ChildOf<Interface2>, Augmentable<Ipv4>
This class represents the following YANG schema fragment defined in module ietf-ip
container ipv4 { presence "Present if IPv4 is enabled on this interface"; config false; status deprecated; leaf forwarding { type boolean; status deprecated; } leaf mtu { type uint16 { range 68..max; } units octets; status deprecated; } list address { key ip; status deprecated; leaf ip { type inet:ipv4-address-no-zone; status deprecated; } choice subnet { status deprecated; case prefix-length { leaf prefix-length { type uint8 { range 0..32; } status deprecated; } } case netmask { leaf netmask { if-feature ipv4-non-contiguous-netmasks; type yang:dotted-quad; status deprecated; } } } leaf origin { type ip-address-origin; status deprecated; } } list neighbor { key ip; status deprecated; leaf ip { type inet:ipv4-address-no-zone; status deprecated; } leaf link-layer-address { type yang:phys-address; status deprecated; } leaf origin { type neighbor-origin; status deprecated; } } }The schema path to identify an instance is ietf-ip/interfaces-state/interface/(urn:ietf:params:xml:ns:yang:ietf-ip?revision=2018-02-22)ipv4
To create instances of this class use Ipv4Builder
.
Ipv4Builder
Modifier and Type | Field and Description |
---|---|
static org.opendaylight.yangtools.yang.common.QName |
QNAME
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
@Nullable List<Address> |
getAddress()
Deprecated.
|
@Nullable Integer |
getMtu()
Deprecated.
|
@Nullable List<Neighbor> |
getNeighbor()
Deprecated.
|
@Nullable Boolean |
isForwarding()
Deprecated.
|
default @NonNull List<Address> |
nonnullAddress()
Deprecated.
|
default @NonNull List<Neighbor> |
nonnullNeighbor()
Deprecated.
|
getImplementedInterface
augmentation
@Deprecated @Nullable Boolean isForwarding()
java.lang.Boolean
forwarding
, or null
if not present@Deprecated @Nullable Integer getMtu()
java.lang.Integer
mtu
, or null
if not present@Deprecated @Nullable List<Address> getAddress()
java.util.List
address
, or null
if not present@Deprecated default @NonNull List<Address> nonnullAddress()
java.util.List
address
, or an empty list if it is not present@Deprecated @Nullable List<Neighbor> getNeighbor()
java.util.List
neighbor
, or null
if not present@Deprecated default @NonNull List<Neighbor> nonnullNeighbor()
java.util.List
neighbor
, or an empty list if it is not presentCopyright © 2019 OpenDaylight. All rights reserved.