Interface QueueGetConfigReply

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

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

    This class represents the following YANG schema fragment defined in module openflow-protocol

     grouping queue-get-config-reply {
       uses ofHeader;
       leaf port {
         type oft:port-number;
       }
       list queues {
         uses packet-queue;
       }
     }
     
    The schema path to identify an instance is openflow-protocol/queue-get-config-reply
    • Field Detail

      • QNAME

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

      • implementedInterface

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

        PortNumber getPort()
        Return port, or null if it is not present.
        Returns:
        org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.common.types.rev130731.PortNumber port, or null if it is not present.
      • getQueues

        @Nullable List<Queues> getQueues()
        Return queues, or null if it is not present.
        Returns:
        java.util.List queues, or null if it is not present.
      • nonnullQueues

        default @NonNull List<Queues> nonnullQueues()
        Return queues, or an empty list if it is not present.
        Returns:
        java.util.List queues, or an empty list if it is not present.