Interface GroupMod
-
- All Superinterfaces:
org.opendaylight.yangtools.yang.binding.BindingObject
,BucketsGrouping
,org.opendaylight.yangtools.yang.binding.DataContainer
,org.opendaylight.yangtools.yang.binding.DataObject
,OfHeader
- All Known Subinterfaces:
GroupModCaseData
,GroupModInput
@Generated("mdsal-binding-generator") public interface GroupMod extends org.opendaylight.yangtools.yang.binding.DataObject, OfHeader, BucketsGrouping
This class represents the following YANG schema fragment defined in module openflow-protocol
grouping group-mod { uses ofHeader; leaf command { type oft:group-mod-command; } leaf type { type oft:group-type; } leaf group-id { type oft:group-id; } uses buckets-grouping; }
The schema path to identify an instance is openflow-protocol/group-mod
-
-
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 GroupModCommand
getCommand()
Return command, ornull
if it is not present.GroupId
getGroupId()
Return groupId, ornull
if it is not present.GroupType
getType()
Return type, ornull
if it is not present.Class<? extends GroupMod>
implementedInterface()
-
Methods inherited from interface org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.protocol.rev130731.BucketsGrouping
getBucketsList, nonnullBucketsList
-
Methods inherited from interface org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.protocol.rev130731.OfHeader
getVersion, getXid
-
-
-
-
Method Detail
-
implementedInterface
Class<? extends GroupMod> implementedInterface()
- Specified by:
implementedInterface
in interfaceBucketsGrouping
- 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
-
getCommand
GroupModCommand getCommand()
Return command, ornull
if it is not present.- Returns:
org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.common.types.rev130731.GroupModCommand
command, ornull
if it is not present.
-
getType
GroupType getType()
Return type, ornull
if it is not present.- Returns:
org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.common.types.rev130731.GroupType
type, ornull
if it is not present.
-
getGroupId
GroupId getGroupId()
Return groupId, ornull
if it is not present.- Returns:
org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.common.types.rev130731.GroupId
groupId, ornull
if it is not present.
-
-