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
All Known Subinterfaces:
Config, State

@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 final @NonNull org.opendaylight.yangtools.yang.common.QName
    YANG identifier of the statement represented by this class.
  • Method Summary

    Modifier and Type
    Method
    Description
    org.opendaylight.yangtools.yang.common.Uint8
    Return externalRouteDistance, or null if it is not present.
    org.opendaylight.yangtools.yang.common.Uint8
    Return internalRouteDistance, or null if it is not present.
     
    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 QNAME
      YANG identifier of the statement represented by this class.
  • Method Details

    • implementedInterface

      Class<? extends BgpDefaultRouteDistanceConfig> implementedInterface()
      Specified by:
      implementedInterface in interface org.opendaylight.yangtools.yang.binding.BindingContract<org.opendaylight.yangtools.yang.binding.DataContainer>
      Specified by:
      implementedInterface in interface org.opendaylight.yangtools.yang.binding.DataObject
    • getExternalRouteDistance

      org.opendaylight.yangtools.yang.common.Uint8 getExternalRouteDistance()
      Return externalRouteDistance, or null if it is not present.
           
               Administrative distance for routes learned from external BGP (eBGP).
           
       
      Returns:
      Uint8 externalRouteDistance, or null 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, or null if it is not present.
           
               Administrative distance for routes learned from internal BGP (iBGP).
           
       
      Returns:
      Uint8 internalRouteDistance, or null 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