Interface NeighborSet
- 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:
NeighborSets
@Generated("mdsal-binding-generator")
public interface NeighborSet
extends org.opendaylight.yangtools.binding.Grouping
Data definition for a list of IPv4 or IPv6 neighbors which can be matched in a
routing policy
This class represents the following YANG schema fragment defined in module openconfig-routing-policy
grouping neighbor-set { list neighbor-set { key neighbor-set-name; leaf neighbor-set-name { type string; } list neighbor { key address; leaf address { type inet:ip-address; } } } }
-
Method Summary
Modifier and TypeMethodDescription@Nullable Map
<NeighborSetKey, NeighborSet> Return neighborSet, ornull
if it is not present.default @NonNull Map
<NeighborSetKey, NeighborSet> Return neighborSet, or an empty list if it is not present.Methods inherited from interface org.opendaylight.yangtools.binding.BindingContract
implementedInterface
-
Method Details
-
getNeighborSet
@Nullable Map<NeighborSetKey,NeighborSet> getNeighborSet()Return neighborSet, ornull
if it is not present.Definitions for neighbor sets
- Returns:
Map<NeighborSetKey, org.opendaylight.yang.gen.v1.http.openconfig.net.yang.routing.policy.rev151009.neighbor.set.NeighborSet>
neighborSet, ornull
if it is not present.
-
nonnullNeighborSet
Return neighborSet, or an empty list if it is not present.- Returns:
Map<NeighborSetKey, org.opendaylight.yang.gen.v1.http.openconfig.net.yang.routing.policy.rev151009.neighbor.set.NeighborSet>
neighborSet, or an empty list if it is not present.
-