Interface ValidationTime

  • All Superinterfaces:
    org.opendaylight.yangtools.yang.binding.ChoiceIn<ValidationConfig>, org.opendaylight.yangtools.yang.binding.DataContainer
    All Known Subinterfaces:
    SetTime, ValidationOff

    public interface ValidationTime
    extends org.opendaylight.yangtools.yang.binding.ChoiceIn<ValidationConfig>
    Sets prefix validation time (in seconds) or to set off the automatic prefix validation after an RPKI update.

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

     choice validation-time {
       case validation-off {
         leaf disable {
           type boolean;
         }
       }
       case set-time {
         leaf prefix-validation-time {
           type uint16 {
             range 5..60;
           }
         }
       }
     }
     
    The schema path to identify an instance is bgp/bgp-router/rpki-config/validation-config/validation-time
    • Field Summary

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

      • Methods inherited from interface org.opendaylight.yangtools.yang.binding.DataContainer

        implementedInterface
    • Field Detail

      • QNAME

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