Interface InstructionChoice

  • All Superinterfaces:
    org.opendaylight.yangtools.yang.binding.ChoiceIn<InstructionGrouping>, org.opendaylight.yangtools.yang.binding.DataContainer
    All Known Subinterfaces:
    ApplyActionsCase, ClearActionsCase, ExperimenterIdCase, GotoTableCase, MeterCase, WriteActionsCase, WriteMetadataCase

    @Generated("mdsal-binding-generator")
    public interface InstructionChoice
    extends org.opendaylight.yangtools.yang.binding.ChoiceIn<InstructionGrouping>

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

     choice instruction-choice {
       case goto-table-case {
         container goto-table {
           leaf table-id {
             type uint8;
           }
         }
       }
       case write-metadata-case {
         container write-metadata {
           leaf metadata {
             type binary;
           }
           leaf metadata-mask {
             type binary;
           }
         }
       }
       case write-actions-case {
         container write-actions {
           uses ofaction:actions-grouping;
         }
       }
       case apply-actions-case {
         container apply-actions {
           uses ofaction:actions-grouping;
         }
       }
       case clear-actions-case;
       case meter-case {
         container meter {
           leaf meter-id {
             type uint32;
           }
         }
       }
     }
     
    The schema path to identify an instance is openflow-instruction/instruction-grouping/instruction-choice
    • Field Summary

      Fields 
      Modifier and Type Field Description
      static @NonNull org.opendaylight.yangtools.yang.common.QName QNAME  
    • Method Summary

      • Methods inherited from interface org.opendaylight.yangtools.yang.binding.DataContainer

        implementedInterface
    • Field Detail

      • QNAME

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