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.QNameQNAME
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description @Nullable ActionTypeV10getActionsV10()@Nullable org.opendaylight.yangtools.yang.common.Uint8getAuxiliaryId()@Nullable org.opendaylight.yangtools.yang.common.Uint32getBuffers()@Nullable CapabilitiesgetCapabilities()@Nullable CapabilitiesV10getCapabilitiesV10()@Nullable org.opendaylight.yangtools.yang.common.Uint64getDatapathId()@Nullable List<PhyPort>getPhyPort()@Nullable org.opendaylight.yangtools.yang.common.Uint32getReserved()@Nullable org.opendaylight.yangtools.yang.common.Uint8getTables()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:
implementedInterfacein interfaceorg.opendaylight.yangtools.yang.binding.DataContainer- Specified by:
implementedInterfacein interfaceorg.opendaylight.yangtools.yang.binding.DataObject- Specified by:
implementedInterfacein interfaceOfHeader
-
getDatapathId
@Nullable org.opendaylight.yangtools.yang.common.Uint64 getDatapathId()
- Returns:
org.opendaylight.yangtools.yang.common.Uint64datapathId, ornullif not present
-
getBuffers
@Nullable org.opendaylight.yangtools.yang.common.Uint32 getBuffers()
- Returns:
org.opendaylight.yangtools.yang.common.Uint32buffers, ornullif not present
-
getTables
@Nullable org.opendaylight.yangtools.yang.common.Uint8 getTables()
- Returns:
org.opendaylight.yangtools.yang.common.Uint8tables, ornullif not present
-
getAuxiliaryId
@Nullable org.opendaylight.yangtools.yang.common.Uint8 getAuxiliaryId()
- Returns:
org.opendaylight.yangtools.yang.common.Uint8auxiliaryId, ornullif not present
-
getCapabilities
@Nullable Capabilities getCapabilities()
- Returns:
org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.common.types.rev130731.Capabilitiescapabilities, ornullif not present
-
getReserved
@Nullable org.opendaylight.yangtools.yang.common.Uint32 getReserved()
- Returns:
org.opendaylight.yangtools.yang.common.Uint32reserved, ornullif not present
-
getCapabilitiesV10
@Nullable CapabilitiesV10 getCapabilitiesV10()
- Returns:
org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.common.types.rev130731.CapabilitiesV10capabilitiesV10, ornullif not present
-
getActionsV10
@Nullable ActionTypeV10 getActionsV10()
- Returns:
org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.common.types.rev130731.ActionTypeV10actionsV10, ornullif not present
-
getPhyPort
@Nullable List<PhyPort> getPhyPort()
- Returns:
java.util.ListphyPort, ornullif not present
-
-