Interface PcepClientAttributes
- 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:
Node1
@Generated("mdsal-binding-generator")
public interface PcepClientAttributes
extends org.opendaylight.yangtools.binding.Grouping
Data present in a node which is a PCEP client (PCC).
This class represents the following YANG schema fragment defined in module network-topology-pcep
grouping pcep-client-attributes { container path-computation-client { config false; leaf ip-address { type inet:ip-address-no-zone; } container stateful-tlv; leaf state-sync { type pcc-sync-state; when ../stateful-tlv; } list reported-lsp { leaf name { type string; } key name; list path { leaf lsp-id { type rsvp:lsp-id; } key lsp-id; uses pcep:path-definition; } uses pcep:association-object; uses lsp-metadata; } } }
-
Method Summary
Modifier and TypeMethodDescriptionReturn pathComputationClient, ornull
if it is not present.@NonNull PathComputationClient
Return pathComputationClient, or an empty instance if it is not present.Methods inherited from interface org.opendaylight.yangtools.binding.BindingContract
implementedInterface
-
Method Details
-
getPathComputationClient
PathComputationClient getPathComputationClient()Return pathComputationClient, ornull
if it is not present.PCC-related run-time information. This container is only present when the node is connected through PCEP in a PCC role.
- Returns:
PathComputationClient
pathComputationClient, ornull
if it is not present.
-
nonnullPathComputationClient
@NonNull PathComputationClient nonnullPathComputationClient()Return pathComputationClient, or an empty instance if it is not present.- Returns:
PathComputationClient
pathComputationClient, or an empty instance if it is not present.
-