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

    @Generated("mdsal-binding-generator")
    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
      org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev130715.IpAddress getAggregateAddress()
      Return aggregateAddress, or null if it is not present.
      org.opendaylight.yangtools.yang.common.Uint8 getDistance()
      Return distance, or null if it is not present.
      org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev130715.IpAddress getNetwork()
      Return network, or null if it is not present.
      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

        org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev130715.IpAddress getAggregateAddress()
        Return aggregateAddress, or null if it is not present.
             
                 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 it is not present.
      • getDistance

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

        org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev130715.IpAddress getNetwork()
        Return network, or null if it is not present.
             
                 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 it is not present.