Interface Unicast

  • All Superinterfaces:
    org.opendaylight.yangtools.yang.binding.Augmentable<Unicast>, org.opendaylight.yangtools.yang.binding.BindingObject, org.opendaylight.yangtools.yang.binding.ChildOf<Nsap>, org.opendaylight.yangtools.yang.binding.DataContainer, org.opendaylight.yangtools.yang.binding.DataObject, MaximumPaths, Redistribute

    public interface Unicast
    extends org.opendaylight.yangtools.yang.binding.ChildOf<Nsap>, org.opendaylight.yangtools.yang.binding.Augmentable<Unicast>, MaximumPaths, Redistribute

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

     container unicast {
       container bgp {
         container aggregate-timer {
           leaf enable {
             type boolean;
             default true;
           }
           leaf threshold {
             type uint16 {
               range 6..60;
             }
           }
         }
         leaf dampening {
           type boolean;
           default false;
         }
         leaf propagate-dmzlink-bw {
           type boolean;
         }
         leaf redistribute-internal {
           type boolean;
         }
         leaf scan-time {
           type uint8 {
             range 5..60;
           }
         }
         uses slow-peer-config;
         leaf soft-reconfig-backup {
           type boolean;
         }
       }
       leaf default-metric {
         type uint32;
       }
       uses maximum-paths;
       leaf network {
         type inet:ip-address;
       }
       uses redistribute;
       leaf synchronization {
         type boolean;
       }
     }
     
    The schema path to identify an instance is bgp/bgp-router/af-configuration/nsap/unicast

    To create instances of this class use UnicastBuilder.

    See Also:
    UnicastBuilder
    • 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 Default Methods 
      Modifier and Type Method Description
      @Nullable Bgp getBgp()
      BGP specific commands for nsap-unicast address family/sub-addess family combination.
      @Nullable org.opendaylight.yangtools.yang.common.Uint32 getDefaultMetric()
      Set metric of redistributed routes.
      @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.
      default java.lang.Class<Unicast> implementedInterface()  
      @Nullable java.lang.Boolean isSynchronization()
      Perform IGP synchronization.
      • Methods inherited from interface org.opendaylight.yangtools.yang.binding.Augmentable

        augmentation
      • 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

        default java.lang.Class<Unicast> 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 MaximumPaths
        Specified by:
        implementedInterface in interface Redistribute
      • getBgp

        @Nullable Bgp getBgp()
        BGP specific commands for nsap-unicast address family/sub-addess family combination.
        Returns:
        org.opendaylight.yang.gen.v1.urn.cisco.params.xml.ns.yang.bgp.rev130715.bgp.router.af.configuration.nsap.unicast.Bgp bgp, or null if not present
      • getDefaultMetric

        @Nullable org.opendaylight.yangtools.yang.common.Uint32 getDefaultMetric()
        Set metric of redistributed routes.
        Returns:
        org.opendaylight.yangtools.yang.common.Uint32 defaultMetric, 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
      • isSynchronization

        @Nullable java.lang.Boolean isSynchronization()
        Perform IGP synchronization.
        Returns:
        java.lang.Boolean synchronization, or null if not present