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.QNameYANG identifier of the statement represented by this class. -
Method Summary
Modifier and TypeMethodDescriptionReturn pathComputationClient, ornullif it is not present.Class<? extends PcepClientAttributes>@NonNull PathComputationClientReturn 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:
implementedInterfacein interfaceorg.opendaylight.yangtools.yang.binding.BindingContract<org.opendaylight.yangtools.yang.binding.DataContainer>- Specified by:
implementedInterfacein interfaceorg.opendaylight.yangtools.yang.binding.DataObject
-
getPathComputationClient
PathComputationClient getPathComputationClient()Return pathComputationClient, ornullif 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:
PathComputationClientpathComputationClient, ornullif it is not present.
-
nonnullPathComputationClient
@NonNull PathComputationClient nonnullPathComputationClient()Return pathComputationClient, or an empty instance if it is not present.- Returns:
PathComputationClientpathComputationClient, or an empty instance if it is not present.
-