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

    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;
         }
       }
     }
     
    The schema path to identify an instance is pcep-session-stats/error-messages-grouping
    • Field Detail

      • QNAME

        static final @NonNull org.opendaylight.yangtools.yang.common.QName QNAME
    • 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()
        The message statistics of received/sent PCErr messages.
        Returns:
        org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.stats.rev171113.error.messages.grouping.ErrorMessages errorMessages, or null if not present