Interface LocalAggregateConfig

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

    public interface LocalAggregateConfig
    extends org.opendaylight.yangtools.yang.binding.DataObject, LocalGenericSettings
    Configuration data for aggregate routes

    This class represents the following YANG schema fragment defined in module openconfig-local-routing

     grouping local-aggregate-config {
       leaf prefix {
         type inet:ip-prefix;
       }
       leaf discard {
         type boolean;
         default false;
       }
       uses local-generic-settings;
     }
     
    The schema path to identify an instance is openconfig-local-routing/local-aggregate-config
    • Field Summary

      Fields 
      Modifier and Type Field Description
      static @NonNull org.opendaylight.yangtools.yang.common.QName QNAME  
    • Field Detail

      • QNAME

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

      • implementedInterface

        Class<? extends LocalAggregateConfig> 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 LocalGenericSettings
      • getPrefix

        @Nullable org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev130715.IpPrefix getPrefix()
        Aggregate prefix to be advertised
        Returns:
        org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev130715.IpPrefix prefix, or null if not present
      • isDiscard

        @Nullable Boolean isDiscard()
        When true, install the aggregate route with a discard next-hop -- traffic destined to the aggregate will be discarded with no ICMP message generated. When false, traffic destined to an aggregate address when no constituent routes are present will generate an ICMP unreachable message.
        Returns:
        java.lang.Boolean discard, or null if not present