public interface ControlPlaneProtocol extends ChildOf<ControlPlaneProtocols>, Augmentable<ControlPlaneProtocol>, Identifiable<ControlPlaneProtocolKey>
This class represents the following YANG schema fragment defined in module ietf-routing
list control-plane-protocol { key "type name"; leaf type { type identityref { base control-plane-protocol; } } leaf name { type string; } leaf description { type string; } container static-routes { when "derived-from-or-self(../type, 'rt:static')" { } } }The schema path to identify an instance is ietf-routing/routing/control-plane-protocols/control-plane-protocol
To create instances of this class use ControlPlaneProtocolBuilder
.
Modifier and Type | Field and Description |
---|---|
static org.opendaylight.yangtools.yang.common.QName |
QNAME |
Modifier and Type | Method and Description |
---|---|
@Nullable String |
getDescription()
Textual description of the control-plane protocolinstance.
|
@Nullable String |
getName()
An arbitrary name of the control-plane protocolinstance.
|
@Nullable StaticRoutes |
getStaticRoutes()
Support for the 'static' pseudo-protocol.Address-family-specific modules augment
this node withtheir lists of routes.
|
@Nullable Class<? extends ControlPlaneProtocol> |
getType()
Type of the control-plane protocol -- an identityderived from the
'control-plane-protocol'base identity.
|
ControlPlaneProtocolKey |
key()
Returns an unique key for the object.
|
getImplementedInterface
augmentation
@Nullable Class<? extends ControlPlaneProtocol> getType()
java.lang.Class
type
, or null
if not present@Nullable String getName()
java.lang.String
name
, or null
if not present@Nullable String getDescription()
java.lang.String
description
, or null
if not present@Nullable StaticRoutes getStaticRoutes()
org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.routing.rev180313.routing.control.plane.protocols.control.plane.protocol.StaticRoutes
staticRoutes
, or null
if not presentControlPlaneProtocolKey key()
Identifiable
key
in interface Identifiable<ControlPlaneProtocolKey>
Copyright © 2019 OpenDaylight. All rights reserved.