Package org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.ietf.stateful.rev200720
Interface LspIdentifiersTlv
- All Superinterfaces:
org.opendaylight.yangtools.binding.BindingContract<org.opendaylight.yangtools.binding.DataContainer>,org.opendaylight.yangtools.binding.BindingObject,org.opendaylight.yangtools.binding.DataContainer,org.opendaylight.yangtools.binding.Grouping
- All Known Subinterfaces:
Tlvs
@Generated("mdsal-binding-generator")
public interface LspIdentifiersTlv
extends org.opendaylight.yangtools.binding.Grouping
LSP Identifiers TLV
This class represents the following YANG schema fragment defined in module odl-pcep-ietf-stateful
grouping lsp-identifiers-tlv {
container lsp-identifiers {
uses pcep:tlv;
leaf lsp-id {
type rsvp:lsp-id;
}
leaf tunnel-id {
type rsvp:tunnel-id;
}
choice address-family {
case ipv4-case {
container ipv4 {
leaf ipv4-tunnel-sender-address {
type inet:ipv4-address-no-zone;
}
leaf ipv4-extended-tunnel-id {
type rsvp:ipv4-extended-tunnel-id;
}
leaf ipv4-tunnel-endpoint-address {
type inet:ipv4-address-no-zone;
}
}
}
case ipv6-case {
container ipv6 {
leaf ipv6-tunnel-sender-address {
type inet:ipv6-address-no-zone;
}
leaf ipv6-extended-tunnel-id {
type rsvp:ipv6-extended-tunnel-id;
}
leaf ipv6-tunnel-endpoint-address {
type inet:ipv6-address-no-zone;
}
}
}
}
}
}
-
Method Summary
Modifier and TypeMethodDescriptionReturn lspIdentifiers, ornullif it is not present.@NonNull LspIdentifiersReturn lspIdentifiers, or an empty instance if it is not present.Methods inherited from interface org.opendaylight.yangtools.binding.BindingContract
implementedInterface
-
Method Details
-
getLspIdentifiers
LspIdentifiers getLspIdentifiers()Return lspIdentifiers, ornullif it is not present.- Returns:
LspIdentifierslspIdentifiers, ornullif it is not present.
-
nonnullLspIdentifiers
@NonNull LspIdentifiers nonnullLspIdentifiers()Return lspIdentifiers, or an empty instance if it is not present.- Returns:
LspIdentifierslspIdentifiers, or an empty instance if it is not present.
-