Interface Multicast
-
- All Superinterfaces:
org.opendaylight.yangtools.yang.binding.Augmentable<Multicast>,org.opendaylight.yangtools.yang.binding.BindingObject,org.opendaylight.yangtools.yang.binding.ChildOf<Ipv4>,org.opendaylight.yangtools.yang.binding.DataContainer,org.opendaylight.yangtools.yang.binding.DataObject,Redistribute,RouterAfConfig
public interface Multicast extends org.opendaylight.yangtools.yang.binding.ChildOf<Ipv4>, org.opendaylight.yangtools.yang.binding.Augmentable<Multicast>, RouterAfConfig
This class represents the following YANG schema fragment defined in module bgp
container multicast { container bgp { uses bgp-af-config; } leaf auto-summary { type boolean; } uses router-af-config; leaf default-metric { type uint32; } }The schema path to identify an instance is bgp/bgp-router/af-configuration/ipv4/multicastTo create instances of this class use
MulticastBuilder.- See Also:
MulticastBuilder
-
-
Field Summary
Fields Modifier and Type Field Description static @NonNull org.opendaylight.yangtools.yang.common.QNameQNAME
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description @Nullable BgpgetBgp()BGP specific commands for ipv4-multicast address family/sub-addess family combination.@Nullable org.opendaylight.yangtools.yang.common.Uint32getDefaultMetric()Set metric of redistributed routes.default java.lang.Class<Multicast>implementedInterface()@Nullable java.lang.BooleanisAutoSummary()Enable automatic network number summarization-
Methods inherited from interface org.opendaylight.yang.gen.v1.urn.cisco.params.xml.ns.yang.bgp.rev130715.Redistribute
getProtocol
-
Methods inherited from interface org.opendaylight.yang.gen.v1.urn.cisco.params.xml.ns.yang.bgp.rev130715.RouterAfConfig
getAggregateAddress, getDistance, getNetwork
-
-
-
-
Method Detail
-
implementedInterface
default java.lang.Class<Multicast> implementedInterface()
- Specified by:
implementedInterfacein interfaceorg.opendaylight.yangtools.yang.binding.DataContainer- Specified by:
implementedInterfacein interfaceorg.opendaylight.yangtools.yang.binding.DataObject- Specified by:
implementedInterfacein interfaceRedistribute- Specified by:
implementedInterfacein interfaceRouterAfConfig
-
getBgp
@Nullable Bgp getBgp()
BGP specific commands for ipv4-multicast address family/sub-addess family combination.- Returns:
org.opendaylight.yang.gen.v1.urn.cisco.params.xml.ns.yang.bgp.rev130715.bgp.router.af.configuration.ipv4.multicast.Bgpbgp, ornullif not present
-
isAutoSummary
@Nullable java.lang.Boolean isAutoSummary()
Enable automatic network number summarization- Returns:
java.lang.BooleanautoSummary, ornullif not present
-
getDefaultMetric
@Nullable org.opendaylight.yangtools.yang.common.Uint32 getDefaultMetric()
Set metric of redistributed routes.- Returns:
org.opendaylight.yangtools.yang.common.Uint32defaultMetric, ornullif not present
-
-