Interface QosEntry

  • All Superinterfaces:
    org.opendaylight.yangtools.yang.binding.Augmentable<QosEntry>, org.opendaylight.yangtools.yang.binding.BindingObject, org.opendaylight.yangtools.yang.binding.ChildOf<OvsdbPortInterfaceAttributes>, org.opendaylight.yangtools.yang.binding.DataContainer, org.opendaylight.yangtools.yang.binding.DataObject, org.opendaylight.yangtools.yang.binding.Identifiable<QosEntryKey>

    public interface QosEntry
    extends org.opendaylight.yangtools.yang.binding.ChildOf<OvsdbPortInterfaceAttributes>, org.opendaylight.yangtools.yang.binding.Augmentable<QosEntry>, org.opendaylight.yangtools.yang.binding.Identifiable<QosEntryKey>

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

     list qos-entry {
       key qos-key;
       max-elements 1;
       leaf qos-key {
         type uint32 {
           range 1..1;
         }
       }
       leaf qos-ref {
         type ovsdb-qos-ref;
       }
     }
     
    The schema path to identify an instance is ovsdb/ovsdb-port-interface-attributes/qos-entry

    To create instances of this class use QosEntryBuilder.

    See Also:
    QosEntryBuilder, QosEntryKey
    • Field Detail

      • QNAME

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

      • implementedInterface

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

        @Nullable org.opendaylight.yangtools.yang.common.Uint32 getQosKey()
        Fixed key to reference the QoS entry in MD-SAL.
        Returns:
        org.opendaylight.yangtools.yang.common.Uint32 qosKey, or null if not present
      • getQosRef

        @Nullable OvsdbQosRef getQosRef()
        Instance identifier of a QoS entry in the MD-SAL.
        Returns:
        org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.ovsdb.rev150105.OvsdbQosRef qosRef, or null if not present
      • key

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