Interface CtrlMsgStats

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

    public interface CtrlMsgStats
    extends org.opendaylight.yangtools.yang.binding.DataObject

    This class represents the following YANG schema fragment defined in module odl-lisp-sb

     grouping ctrl-msg-stats {
       leaf rx-unknown {
         type int64;
       }
       leaf tx-errors {
         type int64;
       }
       list control-message {
         ordered-by user;
         leaf msg-type {
           type lisp-proto:message-type;
         }
         leaf rx-count {
           type int64;
         }
         leaf tx-count {
           type int64;
         }
       }
     }
     
    The schema path to identify an instance is odl-lisp-sb/ctrl-msg-stats
    • Field Detail

      • QNAME

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

      • implementedInterface

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

        java.lang.Long getRxUnknown()
        Returns:
        java.lang.Long rxUnknown, or null if not present
      • getTxErrors

        java.lang.Long getTxErrors()
        Returns:
        java.lang.Long txErrors, or null if not present
      • getControlMessage

        @Nullable java.util.List<ControlMessage> getControlMessage()
        Returns:
        java.util.List controlMessage, or null if not present
      • nonnullControlMessage

        default @NonNull java.util.List<ControlMessage> nonnullControlMessage()
        Returns:
        java.util.List controlMessage, or an empty list if it is not present