Interface AggregateTimer

  • All Superinterfaces:
    org.opendaylight.yangtools.yang.binding.Augmentable<AggregateTimer>, org.opendaylight.yangtools.yang.binding.BindingObject, org.opendaylight.yangtools.yang.binding.ChildOf<BgpAfConfig>, org.opendaylight.yangtools.yang.binding.DataContainer, org.opendaylight.yangtools.yang.binding.DataObject

    public interface AggregateTimer
    extends org.opendaylight.yangtools.yang.binding.ChildOf<BgpAfConfig>, org.opendaylight.yangtools.yang.binding.Augmentable<AggregateTimer>
    Configure aggregation timer.

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

     container aggregate-timer {
       leaf enable {
         type boolean;
         default true;
       }
       leaf threshold {
         type uint16 {
           range 6..60;
         }
       }
     }
     
    The schema path to identify an instance is bgp/bgp-af-config/aggregate-timer

    To create instances of this class use AggregateTimerBuilder.

    See Also:
    AggregateTimerBuilder
    • Field Detail

      • QNAME

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

      • implementedInterface

        default java.lang.Class<AggregateTimer> implementedInterface()
        Specified by:
        implementedInterface in interface org.opendaylight.yangtools.yang.binding.DataContainer
        Specified by:
        implementedInterface in interface org.opendaylight.yangtools.yang.binding.DataObject
      • isEnable

        @Nullable java.lang.Boolean isEnable()
        Returns:
        java.lang.Boolean enable, or null if not present
      • getThreshold

        @Nullable org.opendaylight.yangtools.yang.common.Uint16 getThreshold()
        Returns:
        org.opendaylight.yangtools.yang.common.Uint16 threshold, or null if not present