Interface TunnelLinkAttributes
- All Superinterfaces:
org.opendaylight.yangtools.yang.binding.BindingContract<org.opendaylight.yangtools.yang.binding.DataContainer>
,org.opendaylight.yangtools.yang.binding.BindingObject
,org.opendaylight.yangtools.yang.binding.DataContainer
,org.opendaylight.yangtools.yang.binding.DataObject
- All Known Subinterfaces:
Link1
@Generated("mdsal-binding-generator")
public interface TunnelLinkAttributes
extends org.opendaylight.yangtools.yang.binding.DataObject
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; } }
-
Field Summary
Modifier and TypeFieldDescriptionstatic final @NonNull org.opendaylight.yangtools.yang.common.QName
YANG identifier of the statement represented by this class. -
Method Summary
Modifier and TypeMethodDescriptiongetPaths()
Return paths, ornull
if it is not present.Return tunnelTypes, ornull
if it is not present.Class<? extends TunnelLinkAttributes>
@NonNull TunnelTypes
Return tunnelTypes, or an empty instance if it is not present.Return paths, guaranteed to be non-null.
-
Field Details
-
QNAME
static final @NonNull org.opendaylight.yangtools.yang.common.QName QNAMEYANG identifier of the statement represented by this class.
-
-
Method Details
-
implementedInterface
Class<? extends TunnelLinkAttributes> implementedInterface()- Specified by:
implementedInterface
in interfaceorg.opendaylight.yangtools.yang.binding.BindingContract<org.opendaylight.yangtools.yang.binding.DataContainer>
- Specified by:
implementedInterface
in interfaceorg.opendaylight.yangtools.yang.binding.DataObject
-
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
-