Interface PccConfiguredLsp
-
- All Superinterfaces:
org.opendaylight.yangtools.yang.binding.BindingObject,org.opendaylight.yangtools.yang.binding.DataContainer,org.opendaylight.yangtools.yang.binding.DataObject
- All Known Subinterfaces:
PathComputationClient1,PcepNodeConfig
@Generated("mdsal-binding-generator") public interface PccConfiguredLsp extends org.opendaylight.yangtools.yang.binding.DataObject
Configured LSP per PCC nodeThis class represents the following YANG schema fragment defined in module pcep-server
grouping pcc-configured-lsp { list configured-lsp { key name; leaf name { type string; } leaf path-status { type path-status; config false; } container intended-path { leaf source { type inet:ip-address; } leaf destination { type inet:ip-address; } container constraints { uses algo:path-constraints; } } container computed-path { uses algo:path-descriptions; leaf computed-metric { type uint32; } leaf computation-status { type algo:computation-status; } config false; } } }
-
-
Field Summary
Fields Modifier and Type Field Description static @NonNull org.opendaylight.yangtools.yang.common.QNameQNAMEYANG identifier of the statement represented by this class.
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description @Nullable Map<ConfiguredLspKey,ConfiguredLsp>getConfiguredLsp()Return configuredLsp, ornullif it is not present.Class<? extends PccConfiguredLsp>implementedInterface()default @NonNull Map<ConfiguredLspKey,ConfiguredLsp>nonnullConfiguredLsp()Return configuredLsp, or an empty list if it is not present.
-
-
-
Method Detail
-
implementedInterface
Class<? extends PccConfiguredLsp> implementedInterface()
- Specified by:
implementedInterfacein interfaceorg.opendaylight.yangtools.yang.binding.DataContainer- Specified by:
implementedInterfacein interfaceorg.opendaylight.yangtools.yang.binding.DataObject
-
getConfiguredLsp
@Nullable Map<ConfiguredLspKey,ConfiguredLsp> getConfiguredLsp()
Return configuredLsp, ornullif it is not present.List of Configured LSP per PCC- Returns:
Map<ConfiguredLspKey, ConfiguredLsp>configuredLsp, ornullif it is not present.
-
nonnullConfiguredLsp
default @NonNull Map<ConfiguredLspKey,ConfiguredLsp> nonnullConfiguredLsp()
Return configuredLsp, or an empty list if it is not present.- Returns:
Map<ConfiguredLspKey, ConfiguredLsp>configuredLsp, or an empty list if it is not present.
-
-