Interface Routers
-
- All Superinterfaces:
org.opendaylight.yangtools.yang.binding.BindingObject
,org.opendaylight.yangtools.yang.binding.DataContainer
,org.opendaylight.yangtools.yang.binding.DataObject
- All Known Subinterfaces:
Monitor
@Generated("mdsal-binding-generator") public interface Routers extends org.opendaylight.yangtools.yang.binding.DataObject
This class represents the following YANG schema fragment defined in module bmp-monitor
grouping routers { list router { key router-id; leaf name { type string; } leaf description { type string; } leaf info { type string; } leaf router-id { type router-id; } leaf status { type status; } uses peers; } }
-
-
Field Summary
Fields Modifier and Type Field Description static @NonNull org.opendaylight.yangtools.yang.common.QName
QNAME
YANG identifier of the statement represented by this class.
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description @Nullable Map<RouterKey,Router>
getRouter()
Return router, ornull
if it is not present.Class<? extends Routers>
implementedInterface()
default @NonNull Map<RouterKey,Router>
nonnullRouter()
Return router, or an empty list if it is not present.
-
-
-
Method Detail
-
implementedInterface
Class<? extends Routers> implementedInterface()
- Specified by:
implementedInterface
in interfaceorg.opendaylight.yangtools.yang.binding.DataContainer
- Specified by:
implementedInterface
in interfaceorg.opendaylight.yangtools.yang.binding.DataObject
-
getRouter
@Nullable Map<RouterKey,Router> getRouter()
Return router, ornull
if it is not present.- Returns:
Map<RouterKey, Router>
router, ornull
if it is not present.
-
-