Interface BgpDefaultRouteDistanceConfig
- 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
@Generated("mdsal-binding-generator")
public interface BgpDefaultRouteDistanceConfig
extends org.opendaylight.yangtools.yang.binding.DataObject
Configuration options relating to the administrative distance (or preference)
assigned to routes received from different sources (external, internal, and
local).
This class represents the following YANG schema fragment defined in module openconfig-bgp
grouping bgp-default-route-distance_config { leaf external-route-distance { type uint8 { range 1..255; } } leaf internal-route-distance { type uint8 { range 1..255; } } }
-
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 TypeMethodDescriptionorg.opendaylight.yangtools.yang.common.Uint8
Return externalRouteDistance, ornull
if it is not present.org.opendaylight.yangtools.yang.common.Uint8
Return internalRouteDistance, ornull
if it is not present.Class<? extends BgpDefaultRouteDistanceConfig>
default @NonNull org.opendaylight.yangtools.yang.common.Uint8
Return externalRouteDistance, guaranteed to be non-null.default @NonNull org.opendaylight.yangtools.yang.common.Uint8
Return internalRouteDistance, 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 BgpDefaultRouteDistanceConfig> 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
-
getExternalRouteDistance
org.opendaylight.yangtools.yang.common.Uint8 getExternalRouteDistance()Return externalRouteDistance, ornull
if it is not present.Administrative distance for routes learned from external BGP (eBGP).
- Returns:
Uint8
externalRouteDistance, ornull
if it is not present.
-
requireExternalRouteDistance
default @NonNull org.opendaylight.yangtools.yang.common.Uint8 requireExternalRouteDistance()Return externalRouteDistance, guaranteed to be non-null.Administrative distance for routes learned from external BGP (eBGP).
- Returns:
Uint8
externalRouteDistance, guaranteed to be non-null.- Throws:
NoSuchElementException
- if externalRouteDistance is not present
-
getInternalRouteDistance
org.opendaylight.yangtools.yang.common.Uint8 getInternalRouteDistance()Return internalRouteDistance, ornull
if it is not present.Administrative distance for routes learned from internal BGP (iBGP).
- Returns:
Uint8
internalRouteDistance, ornull
if it is not present.
-
requireInternalRouteDistance
default @NonNull org.opendaylight.yangtools.yang.common.Uint8 requireInternalRouteDistance()Return internalRouteDistance, guaranteed to be non-null.Administrative distance for routes learned from internal BGP (iBGP).
- Returns:
Uint8
internalRouteDistance, guaranteed to be non-null.- Throws:
NoSuchElementException
- if internalRouteDistance is not present
-