Interface ProtocolsConfig

  • 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

    public interface ProtocolsConfig
    extends org.opendaylight.yangtools.yang.binding.DataObject
    Configuration parameters relating to a generic protocol instance within a network instance

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

     grouping protocols-config {
       leaf identifier {
         type identityref {
           base install-protocol-type;
         }
       }
       leaf name {
         type string;
       }
       leaf enabled {
         type boolean;
       }
       leaf target-table {
         type string;
       }
     }
     
    The schema path to identify an instance is openconfig-network-instance/protocols-config
    • Field Detail

      • QNAME

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

      • implementedInterface

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

        @Nullable Class<? extends InstallProtocolType> getIdentifier()
        The protocol identifier for the instance
        Returns:
        java.lang.Class identifier, or null if not present
      • getName

        @Nullable String getName()
        A unique name for the protocol instance
        Returns:
        java.lang.String name, or null if not present
      • isEnabled

        @Nullable Boolean isEnabled()
        A boolean value indicating whether the local protocol instance is enabled.
        Returns:
        java.lang.Boolean enabled, or null if not present
      • getTargetTable

        @Nullable String getTargetTable()
        The table (RIB, FIB, or LFIB) that the protocol should populate its entries in.
        Returns:
        java.lang.String targetTable, or null if not present