Interface BgpDefaultRouteDistanceConfig
-
- All Superinterfaces:
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
Fields Modifier and Type Field Description static @NonNull org.opendaylight.yangtools.yang.common.QNameQNAMEYANG identifier of the statement represented by this class.
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description org.opendaylight.yangtools.yang.common.Uint8getExternalRouteDistance()Return externalRouteDistance, ornullif it is not present.org.opendaylight.yangtools.yang.common.Uint8getInternalRouteDistance()Return internalRouteDistance, ornullif it is not present.Class<? extends BgpDefaultRouteDistanceConfig>implementedInterface()default @NonNull org.opendaylight.yangtools.yang.common.Uint8requireExternalRouteDistance()Return externalRouteDistance, guaranteed to be non-null.default @NonNull org.opendaylight.yangtools.yang.common.Uint8requireInternalRouteDistance()Return internalRouteDistance, guaranteed to be non-null.
-
-
-
Method Detail
-
implementedInterface
Class<? extends BgpDefaultRouteDistanceConfig> implementedInterface()
- Specified by:
implementedInterfacein interfaceorg.opendaylight.yangtools.yang.binding.DataContainer- Specified by:
implementedInterfacein interfaceorg.opendaylight.yangtools.yang.binding.DataObject
-
getExternalRouteDistance
org.opendaylight.yangtools.yang.common.Uint8 getExternalRouteDistance()
Return externalRouteDistance, ornullif it is not present.Administrative distance for routes learned from external BGP (eBGP).- Returns:
Uint8externalRouteDistance, ornullif 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:
Uint8externalRouteDistance, guaranteed to be non-null.- Throws:
NoSuchElementException- if externalRouteDistance is not present
-
getInternalRouteDistance
org.opendaylight.yangtools.yang.common.Uint8 getInternalRouteDistance()
Return internalRouteDistance, ornullif it is not present.Administrative distance for routes learned from internal BGP (iBGP).- Returns:
Uint8internalRouteDistance, ornullif 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:
Uint8internalRouteDistance, guaranteed to be non-null.- Throws:
NoSuchElementException- if internalRouteDistance is not present
-
-