Interface TableTestInput

  • All Superinterfaces:
    org.opendaylight.yangtools.yang.binding.Augmentable<TableTestInput>, org.opendaylight.yangtools.yang.binding.BindingObject, org.opendaylight.yangtools.yang.binding.DataContainer, org.opendaylight.yangtools.yang.binding.DataObject, org.opendaylight.yangtools.yang.binding.RpcInput

    public interface TableTestInput
    extends org.opendaylight.yangtools.yang.binding.RpcInput, org.opendaylight.yangtools.yang.binding.Augmentable<TableTestInput>

    This class represents the following YANG schema fragment defined in module sal-bulk-flow

     input input {
       leaf operation {
         type enumeration {
           enum add;
           enum delete;
         }
       }
       leaf dpn-count {
         type uint32;
       }
       leaf start-table-id {
         type uint32;
       }
       leaf end-table-id {
         type uint32;
       }
     }
     
    The schema path to identify an instance is sal-bulk-flow/table-test/input

    To create instances of this class use TableTestInputBuilder.

    See Also:
    TableTestInputBuilder
    • Field Detail

      • QNAME

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

      • implementedInterface

        default Class<TableTestInput> 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 org.opendaylight.yangtools.yang.binding.RpcInput
      • getOperation

        TableTestInput.Operation getOperation()
        Type of operation, add or delete
        Returns:
        org.opendaylight.yang.gen.v1.urn.opendaylight.bulk.flow.service.rev150608.TableTestInput.Operation operation, or null if not present
      • getDpnCount

        org.opendaylight.yangtools.yang.common.Uint32 getDpnCount()
        Total number of dpns to add these tables
        Returns:
        org.opendaylight.yangtools.yang.common.Uint32 dpnCount, or null if not present
      • getStartTableId

        org.opendaylight.yangtools.yang.common.Uint32 getStartTableId()
        Starting table id
        Returns:
        org.opendaylight.yangtools.yang.common.Uint32 startTableId, or null if not present
      • getEndTableId

        org.opendaylight.yangtools.yang.common.Uint32 getEndTableId()
        Last table id
        Returns:
        org.opendaylight.yangtools.yang.common.Uint32 endTableId, or null if not present