Interface PcepClientAttributes
- 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:
Node1
@Generated("mdsal-binding-generator")
public interface PcepClientAttributes
extends org.opendaylight.yangtools.yang.binding.DataObject
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 lsp-metadata; } } }
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final @NonNull org.opendaylight.yangtools.yang.common.QName
YANG identifier of the statement represented by this class. -
Method Summary
Modifier and TypeMethodDescriptionReturn pathComputationClient, ornull
if it is not present.Class<? extends PcepClientAttributes>
@NonNull PathComputationClient
Return pathComputationClient, or an empty instance if it is not present.
-
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 PcepClientAttributes> 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
-
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.
-