Interface ErrorMessagesGrouping

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

    @Generated("mdsal-binding-generator")
    public interface ErrorMessagesGrouping
    extends org.opendaylight.yangtools.yang.binding.DataObject

    This class represents the following YANG schema fragment defined in module pcep-session-stats

     grouping error-messages-grouping {
       container error-messages {
         leaf received-error-msg-count {
           type uint32;
           default 0;
         }
         leaf sent-error-msg-count {
           type uint32;
           default 0;
         }
         container last-received-error {
           uses error;
         }
         container last-sent-error {
           uses error;
         }
       }
     }
     
    • Field Detail

      • QNAME

        static final @NonNull org.opendaylight.yangtools.yang.common.QName QNAME
        YANG identifier of the statement represented by this class.
    • Method Detail

      • implementedInterface

        Class<? extends ErrorMessagesGrouping> implementedInterface()
        Specified by:
        implementedInterface in interface org.opendaylight.yangtools.yang.binding.DataContainer
        Specified by:
        implementedInterface in interface org.opendaylight.yangtools.yang.binding.DataObject
      • getErrorMessages

        ErrorMessages getErrorMessages()
        Return errorMessages, or null if it is not present.
             
                 The message statistics of received/sent PCErr messages.
             
         
        Returns:
        ErrorMessages errorMessages, or null if it is not present.