Interface TunnelLinkAttributes
- 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:
Link1
@Generated("mdsal-binding-generator")
public interface TunnelLinkAttributes
extends org.opendaylight.yangtools.binding.Grouping
A topology link which is actually a tunnel has additional attributes.
This class represents the following YANG schema fragment defined in module topology-tunnel
grouping tunnel-link-attributes { container tunnel-types { config false; } leaf-list paths { config false; type path-ref; } }
-
Method Summary
Modifier and TypeMethodDescriptiongetPaths()
Return paths, ornull
if it is not present.Return tunnelTypes, ornull
if it is not present.@NonNull TunnelTypes
Return tunnelTypes, or an empty instance if it is not present.Return paths, guaranteed to be non-null.Methods inherited from interface org.opendaylight.yangtools.binding.BindingContract
implementedInterface
-
Method Details
-
getTunnelTypes
TunnelTypes getTunnelTypes()Return tunnelTypes, ornull
if it is not present.A tunnel can have multiple traits, each of which is indicated by a presence container under this one. Such containers should not carry any data.
- Returns:
TunnelTypes
tunnelTypes, ornull
if it is not present.
-
nonnullTunnelTypes
@NonNull TunnelTypes nonnullTunnelTypes()Return tunnelTypes, or an empty instance if it is not present.- Returns:
TunnelTypes
tunnelTypes, or an empty instance if it is not present.
-
getPaths
Return paths, ornull
if it is not present.List of paths associated with this tunnel. The exact relationship between the tunnel and these paths is technology-specific.
- Returns:
Set<PathId>
paths, ornull
if it is not present.
-
requirePaths
Return paths, guaranteed to be non-null.List of paths associated with this tunnel. The exact relationship between the tunnel and these paths is technology-specific.
- Returns:
Set<PathId>
paths, guaranteed to be non-null.- Throws:
NoSuchElementException
- if paths is not present
-