Interface Aggregate

  • All Superinterfaces:
    org.opendaylight.yangtools.yang.binding.Augmentable<Aggregate>, org.opendaylight.yangtools.yang.binding.BindingObject, org.opendaylight.yangtools.yang.binding.ChildOf<LocalAggregates>, org.opendaylight.yangtools.yang.binding.DataContainer, org.opendaylight.yangtools.yang.binding.DataObject, org.opendaylight.yangtools.yang.binding.Identifiable<AggregateKey>

    public interface Aggregate
    extends org.opendaylight.yangtools.yang.binding.ChildOf<LocalAggregates>, org.opendaylight.yangtools.yang.binding.Augmentable<Aggregate>, org.opendaylight.yangtools.yang.binding.Identifiable<AggregateKey>
    List of aggregates

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

     list aggregate {
       key prefix;
       leaf prefix {
         type leafref {
           path ../config/prefix;
         }
       }
       container config {
         uses local-aggregate-config;
       }
       container state {
         config false;
         uses local-aggregate-config;
         uses local-aggregate-state;
       }
     }
     
    The schema path to identify an instance is openconfig-local-routing/local-aggregate-top/local-aggregates/aggregate

    To create instances of this class use AggregateBuilder.

    See Also:
    AggregateBuilder, AggregateKey
    • 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

        default Class<Aggregate> implementedInterface()
        Specified by:
        implementedInterface in interface org.opendaylight.yangtools.yang.binding.DataContainer
        Specified by:
        implementedInterface in interface org.opendaylight.yangtools.yang.binding.DataObject
      • getPrefix

        @Nullable org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev130715.IpPrefix getPrefix()
        Reference to the configured prefix for this aggregate
        Returns:
        org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev130715.IpPrefix prefix, or null if not present
      • getConfig

        @Nullable Config getConfig()
        Configuration data for aggregate advertisements
        Returns:
        org.opendaylight.yang.gen.v1.http.openconfig.net.yang.local.routing.rev151009.local.aggregate.top.local.aggregates.aggregate.Config config, or null if not present
      • getState

        @Nullable State getState()
        Operational state data for aggregate advertisements
        Returns:
        org.opendaylight.yang.gen.v1.http.openconfig.net.yang.local.routing.rev151009.local.aggregate.top.local.aggregates.aggregate.State state, or null if not present
      • key

        AggregateKey key()
        Specified by:
        key in interface org.opendaylight.yangtools.yang.binding.Identifiable<AggregateKey>