All Superinterfaces:
org.opendaylight.yangtools.binding.BindingContract<org.opendaylight.yangtools.binding.DataContainer>, org.opendaylight.yangtools.binding.BindingObject, org.opendaylight.yangtools.binding.DataContainer, org.opendaylight.yangtools.binding.Grouping
All Known Subinterfaces:
Config, State

@Generated("mdsal-binding-generator") public interface InterTablePoliciesConfig extends org.opendaylight.yangtools.binding.Grouping
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;
   }
 }
 
  • Method Summary

    Modifier and Type
    Method
    Description
    Return dstTable, or null if it is not present.
    Return srcTable, or null if it is not present.
    default @NonNull String
    Return dstTable, guaranteed to be non-null.
    default @NonNull String
    Return srcTable, guaranteed to be non-null.

    Methods inherited from interface org.opendaylight.yangtools.binding.BindingContract

    implementedInterface
  • Method Details

    • 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