Interface FeaturesReply
-
- All Superinterfaces:
org.opendaylight.yangtools.yang.binding.BindingObject
,org.opendaylight.yangtools.yang.binding.DataContainer
,org.opendaylight.yangtools.yang.binding.DataObject
,OfHeader
- All Known Subinterfaces:
GetFeaturesOutput
public interface FeaturesReply extends org.opendaylight.yangtools.yang.binding.DataObject, OfHeader
This class represents the following YANG schema fragment defined in module openflow-protocol
grouping features-reply { uses ofHeader; leaf datapathId { type uint64; } leaf buffers { type uint32; } leaf tables { type uint8; } leaf auxiliaryId { type uint8; } leaf capabilities { type oft:capabilities; } leaf reserved { type uint32; } leaf capabilities-v10 { type oft:capabilities-v10; } leaf actions-v10 { type oft:action-type-v10; } list phy-port { uses port-grouping; } }
The schema path to identify an instance is openflow-protocol/features-reply
-
-
Field Summary
Fields Modifier and Type Field Description static @NonNull org.opendaylight.yangtools.yang.common.QName
QNAME
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description @Nullable ActionTypeV10
getActionsV10()
@Nullable org.opendaylight.yangtools.yang.common.Uint8
getAuxiliaryId()
@Nullable org.opendaylight.yangtools.yang.common.Uint32
getBuffers()
@Nullable Capabilities
getCapabilities()
@Nullable CapabilitiesV10
getCapabilitiesV10()
@Nullable org.opendaylight.yangtools.yang.common.Uint64
getDatapathId()
@Nullable List<PhyPort>
getPhyPort()
@Nullable org.opendaylight.yangtools.yang.common.Uint32
getReserved()
@Nullable org.opendaylight.yangtools.yang.common.Uint8
getTables()
Class<? extends FeaturesReply>
implementedInterface()
default @NonNull List<PhyPort>
nonnullPhyPort()
-
Methods inherited from interface org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.protocol.rev130731.OfHeader
getVersion, getXid
-
-
-
-
Method Detail
-
implementedInterface
Class<? extends FeaturesReply> implementedInterface()
- Specified by:
implementedInterface
in interfaceorg.opendaylight.yangtools.yang.binding.DataContainer
- Specified by:
implementedInterface
in interfaceorg.opendaylight.yangtools.yang.binding.DataObject
- Specified by:
implementedInterface
in interfaceOfHeader
-
getDatapathId
@Nullable org.opendaylight.yangtools.yang.common.Uint64 getDatapathId()
- Returns:
org.opendaylight.yangtools.yang.common.Uint64
datapathId
, ornull
if not present
-
getBuffers
@Nullable org.opendaylight.yangtools.yang.common.Uint32 getBuffers()
- Returns:
org.opendaylight.yangtools.yang.common.Uint32
buffers
, ornull
if not present
-
getTables
@Nullable org.opendaylight.yangtools.yang.common.Uint8 getTables()
- Returns:
org.opendaylight.yangtools.yang.common.Uint8
tables
, ornull
if not present
-
getAuxiliaryId
@Nullable org.opendaylight.yangtools.yang.common.Uint8 getAuxiliaryId()
- Returns:
org.opendaylight.yangtools.yang.common.Uint8
auxiliaryId
, ornull
if not present
-
getCapabilities
@Nullable Capabilities getCapabilities()
- Returns:
org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.common.types.rev130731.Capabilities
capabilities
, ornull
if not present
-
getReserved
@Nullable org.opendaylight.yangtools.yang.common.Uint32 getReserved()
- Returns:
org.opendaylight.yangtools.yang.common.Uint32
reserved
, ornull
if not present
-
getCapabilitiesV10
@Nullable CapabilitiesV10 getCapabilitiesV10()
- Returns:
org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.common.types.rev130731.CapabilitiesV10
capabilitiesV10
, ornull
if not present
-
getActionsV10
@Nullable ActionTypeV10 getActionsV10()
- Returns:
org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.common.types.rev130731.ActionTypeV10
actionsV10
, ornull
if not present
-
getPhyPort
@Nullable List<PhyPort> getPhyPort()
- Returns:
java.util.List
phyPort
, ornull
if not present
-
-