Interface BgpNeighborState
- 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:
NeighborStateAugmentation
,State8
@Generated("mdsal-binding-generator")
public interface BgpNeighborState
extends org.opendaylight.yangtools.yang.binding.DataObject
Grouping containing operational state variables relating to a BGP neighbor
This class represents the following YANG schema fragment defined in module openconfig-bgp-operational
grouping bgp-neighbor_state { leaf session-state { type enumeration { enum IDLE { } enum CONNECT { } enum ACTIVE { } enum OPENSENT { } enum OPENCONFIRM { } enum ESTABLISHED { } } } leaf-list supported-capabilities { type identityref { base bgp-capability; } } }
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic enum
This class represents the following YANG schema fragment defined in module openconfig-bgp-operational -
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 TypeMethodDescriptionReturn sessionState, ornull
if it is not present.@Nullable Set<BgpCapability>
Return supportedCapabilities, ornull
if it is not present.Class<? extends BgpNeighborState>
default @NonNull BgpNeighborState.SessionState
Return sessionState, guaranteed to be non-null.default @NonNull Set<BgpCapability>
Return supportedCapabilities, 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 BgpNeighborState> 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
-
getSessionState
BgpNeighborState.SessionState getSessionState()Return sessionState, ornull
if it is not present.Operational state of the BGP peer
- Returns:
SessionState
sessionState, ornull
if it is not present.
-
requireSessionState
Return sessionState, guaranteed to be non-null.Operational state of the BGP peer
- Returns:
SessionState
sessionState, guaranteed to be non-null.- Throws:
NoSuchElementException
- if sessionState is not present
-
getSupportedCapabilities
@Nullable Set<BgpCapability> getSupportedCapabilities()Return supportedCapabilities, ornull
if it is not present.BGP capabilities negotiated as supported with the peer
- Returns:
Set<BgpCapability>
supportedCapabilities, ornull
if it is not present.
-
requireSupportedCapabilities
Return supportedCapabilities, guaranteed to be non-null.BGP capabilities negotiated as supported with the peer
- Returns:
Set<BgpCapability>
supportedCapabilities, guaranteed to be non-null.- Throws:
NoSuchElementException
- if supportedCapabilities is not present
-