Interface NodeConfig

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

    @Generated("mdsal-binding-generator")
    public interface NodeConfig
    extends org.opendaylight.yangtools.yang.binding.DataObject
    Openflow device initial configuration structure.

    This class represents the following YANG schema fragment defined in module node-config

     grouping node-config {
       leaf flag {
         type string;
       }
       leaf miss-search-length {
         type uint16;
       }
     }
     
    • Field Detail

      • QNAME

        static final @NonNull org.opendaylight.yangtools.yang.common.QName QNAME
        YANG identifier of the statement represented by this class.
    • Method Detail

      • implementedInterface

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

        String getFlag()
        Return flag, or null if it is not present.
             
                 Switch config flag. Expected values FRAGNORMAL, OFPCFRAGDROP, OFPCFRAGREASM,
                 OFPCFRAGMASK
             
         
        Returns:
        String flag, or null if it is not present.
      • requireFlag

        default @NonNull String requireFlag()
        Return flag, guaranteed to be non-null.
             
                 Switch config flag. Expected values FRAGNORMAL, OFPCFRAGDROP, OFPCFRAGREASM,
                 OFPCFRAGMASK
             
         
        Returns:
        String flag, guaranteed to be non-null.
        Throws:
        NoSuchElementException - if flag is not present
      • getMissSearchLength

        org.opendaylight.yangtools.yang.common.Uint16 getMissSearchLength()
        Return missSearchLength, or null if it is not present.
        Returns:
        Uint16 missSearchLength, or null if it is not present.
      • requireMissSearchLength

        default @NonNull org.opendaylight.yangtools.yang.common.Uint16 requireMissSearchLength()
        Return missSearchLength, guaranteed to be non-null.
        Returns:
        Uint16 missSearchLength, guaranteed to be non-null.
        Throws:
        NoSuchElementException - if missSearchLength is not present