Interface QueueList

  • All Superinterfaces:
    org.opendaylight.yangtools.yang.binding.Augmentable<QueueList>, org.opendaylight.yangtools.yang.binding.BindingObject, org.opendaylight.yangtools.yang.binding.ChildOf<QosEntries>, org.opendaylight.yangtools.yang.binding.DataContainer, org.opendaylight.yangtools.yang.binding.DataObject, org.opendaylight.yangtools.yang.binding.Identifiable<QueueListKey>

    public interface QueueList
    extends org.opendaylight.yangtools.yang.binding.ChildOf<QosEntries>, org.opendaylight.yangtools.yang.binding.Augmentable<QueueList>, org.opendaylight.yangtools.yang.binding.Identifiable<QueueListKey>
    The list of queues used by the QoS

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

     list queue-list {
       key queue-number;
       leaf queue-number {
         type uint32;
       }
       leaf queue-ref {
         type ovsdb-queue-ref;
       }
     }
     
    The schema path to identify an instance is ovsdb/ovsdb-node-attributes/qos-entries/queue-list

    To create instances of this class use QueueListBuilder.

    See Also:
    QueueListBuilder, QueueListKey
    • Field Detail

      • QNAME

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

      • implementedInterface

        default Class<QueueList> implementedInterface()
        Specified by:
        implementedInterface in interface org.opendaylight.yangtools.yang.binding.DataContainer
        Specified by:
        implementedInterface in interface org.opendaylight.yangtools.yang.binding.DataObject
      • getQueueNumber

        @Nullable org.opendaylight.yangtools.yang.common.Uint32 getQueueNumber()
        The queue number of the record in the QoS entry
        Returns:
        org.opendaylight.yangtools.yang.common.Uint32 queueNumber, or null if not present
      • getQueueRef

        @Nullable OvsdbQueueRef getQueueRef()
        Instance identifier to a Queue in the MD-SAL.
        Returns:
        org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.ovsdb.rev150105.OvsdbQueueRef queueRef, or null if not present
      • key

        QueueListKey key()
        Specified by:
        key in interface org.opendaylight.yangtools.yang.binding.Identifiable<QueueListKey>