Interface RouterAfConfig

  • All Superinterfaces:
    org.opendaylight.yangtools.yang.binding.BindingObject, org.opendaylight.yangtools.yang.binding.DataContainer, org.opendaylight.yangtools.yang.binding.DataObject, Redistribute
    All Known Subinterfaces:
    Multicast, Multicast, Unicast, Unicast

    public interface RouterAfConfig
    extends org.opendaylight.yangtools.yang.binding.DataObject, Redistribute
    A set of configuration parameters that is applicable to all address families on the BGP router.

    This class represents the following YANG schema fragment defined in module bgp

     grouping router-af-config {
       leaf aggregate-address {
         type inet:ip-address;
       }
       leaf distance {
         type uint8 {
           range 1..255;
         }
       }
       leaf network {
         type inet:ip-address;
       }
       uses redistribute;
     }
     
    The schema path to identify an instance is bgp/router-af-config
    • Field Summary

      Fields 
      Modifier and Type Field Description
      static @NonNull org.opendaylight.yangtools.yang.common.QName QNAME  
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      @Nullable org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev130715.IpAddress getAggregateAddress()
      Configure BGP aggregate address.
      @Nullable org.opendaylight.yangtools.yang.common.Uint8 getDistance()
      Define an administrative distance.
      @Nullable org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev130715.IpAddress getNetwork()
      Specify a network to announce via BGP.
      java.lang.Class<? extends RouterAfConfig> implementedInterface()  
      • Methods inherited from interface org.opendaylight.yang.gen.v1.urn.cisco.params.xml.ns.yang.bgp.rev130715.Redistribute

        getProtocol
    • Field Detail

      • QNAME

        static final @NonNull org.opendaylight.yangtools.yang.common.QName QNAME
    • Method Detail

      • implementedInterface

        java.lang.Class<? extends RouterAfConfig> implementedInterface()
        Specified by:
        implementedInterface in interface org.opendaylight.yangtools.yang.binding.DataContainer
        Specified by:
        implementedInterface in interface org.opendaylight.yangtools.yang.binding.DataObject
        Specified by:
        implementedInterface in interface Redistribute
      • getAggregateAddress

        @Nullable org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev130715.IpAddress getAggregateAddress()
        Configure BGP aggregate address.
        Returns:
        org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev130715.IpAddress aggregateAddress, or null if not present
      • getDistance

        @Nullable org.opendaylight.yangtools.yang.common.Uint8 getDistance()
        Define an administrative distance.
        Returns:
        org.opendaylight.yangtools.yang.common.Uint8 distance, or null if not present
      • getNetwork

        @Nullable org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev130715.IpAddress getNetwork()
        Specify a network to announce via BGP.
        Returns:
        org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev130715.IpAddress network, or null if not present