public interface ApplicationData extends ChildOf<LispAddress>, Augmentable<ApplicationData>
This class represents the following YANG schema fragment defined in module ietf-lisp-address-types
container application-data { when "../address-type = 'laddr:application-data-lcaf'" { } leaf address { type simple-address; } leaf protocol { type uint8; } leaf ip-tos { type int32; } leaf local-port-low { type inet:port-number; } leaf local-port-high { type inet:port-number; } leaf remote-port-low { type inet:port-number; } leaf remote-port-high { type inet:port-number; } }The schema path to identify an instance is ietf-lisp-address-types/lisp-address/address/application-data/application-data
To create instances of this class use ApplicationDataBuilder
.
ApplicationDataBuilder
Modifier and Type | Field and Description |
---|---|
static org.opendaylight.yangtools.yang.common.QName |
QNAME |
Modifier and Type | Method and Description |
---|---|
@Nullable SimpleAddress |
getAddress()
AFI address.
|
@Nullable Integer |
getIpTos()
Type of service field.
|
@Nullable PortNumber |
getLocalPortHigh()
High end of local port range.
|
@Nullable PortNumber |
getLocalPortLow()
Low end of local port range.
|
@Nullable Short |
getProtocol()
Protocol number.
|
@Nullable PortNumber |
getRemotePortHigh()
High end of remote port range.
|
@Nullable PortNumber |
getRemotePortLow()
Low end of remote port range.
|
getImplementedInterface
augmentation
@Nullable SimpleAddress getAddress()
org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.lisp.address.types.rev151105.SimpleAddress
address
, or null
if not present@Nullable Short getProtocol()
java.lang.Short
protocol
, or null
if not present@Nullable Integer getIpTos()
java.lang.Integer
ipTos
, or null
if not present@Nullable PortNumber getLocalPortLow()
org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev130715.PortNumber
localPortLow
, or null
if not present@Nullable PortNumber getLocalPortHigh()
org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev130715.PortNumber
localPortHigh
, or null
if not present@Nullable PortNumber getRemotePortLow()
org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev130715.PortNumber
remotePortLow
, or null
if not present@Nullable PortNumber getRemotePortHigh()
org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev130715.PortNumber
remotePortHigh
, or null
if not presentCopyright © 2019 OpenDaylight. All rights reserved.