Interface GetConfigReply
-
- All Superinterfaces:
org.opendaylight.yangtools.yang.binding.BindingObject
,org.opendaylight.yangtools.yang.binding.DataContainer
,org.opendaylight.yangtools.yang.binding.DataObject
,OfHeader
- All Known Subinterfaces:
GetConfigOutput
public interface GetConfigReply extends org.opendaylight.yangtools.yang.binding.DataObject, OfHeader
This class represents the following YANG schema fragment defined in module openflow-protocol
grouping get-config-reply { uses ofHeader; leaf flags { type oft:switch-config-flag; } leaf miss-send-len { type uint16; } }
The schema path to identify an instance is openflow-protocol/get-config-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 Modifier and Type Method Description @Nullable SwitchConfigFlag
getFlags()
@Nullable org.opendaylight.yangtools.yang.common.Uint16
getMissSendLen()
Class<? extends GetConfigReply>
implementedInterface()
-
Methods inherited from interface org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.protocol.rev130731.OfHeader
getVersion, getXid
-
-
-
-
Method Detail
-
implementedInterface
Class<? extends GetConfigReply> 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
-
getFlags
@Nullable SwitchConfigFlag getFlags()
- Returns:
org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.common.types.rev130731.SwitchConfigFlag
flags
, ornull
if not present
-
getMissSendLen
@Nullable org.opendaylight.yangtools.yang.common.Uint16 getMissSendLen()
- Returns:
org.opendaylight.yangtools.yang.common.Uint16
missSendLen
, ornull
if not present
-
-