Interface InterTablePoliciesConfig

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

    @Generated("mdsal-binding-generator")
    public interface InterTablePoliciesConfig
    extends org.opendaylight.yangtools.yang.binding.DataObject
    Configuration entries that relate to how RIB or FIB entries are propagated between tables within the same network instance

    This class represents the following YANG schema fragment defined in module openconfig-network-instance

     grouping inter-table-policies-config {
       leaf src-table {
         type string;
       }
       leaf dst-table {
         type string;
       }
     }
     
    The schema path to identify an instance is openconfig-network-instanceinter-table-policies-config
    • Field Detail

      • QNAME

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

      • implementedInterface

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

        String getSrcTable()
        Return srcTable, or null if it is not present.
             
                 The source protocol for the table connection
             
         
        Returns:
        String srcTable, or null if it is not present.
      • requireSrcTable

        default @NonNull String requireSrcTable()
        Return srcTable, guaranteed to be non-null.
             
                 The source protocol for the table connection
             
         
        Returns:
        String srcTable, guaranteed to be non-null.
        Throws:
        NoSuchElementException - if srcTable is not present
      • getDstTable

        String getDstTable()
        Return dstTable, or null if it is not present.
             
                 The destination protocol for the table connection
             
         
        Returns:
        String dstTable, or null if it is not present.
      • requireDstTable

        default @NonNull String requireDstTable()
        Return dstTable, guaranteed to be non-null.
             
                 The destination protocol for the table connection
             
         
        Returns:
        String dstTable, guaranteed to be non-null.
        Throws:
        NoSuchElementException - if dstTable is not present