Interface TableUpdate
-
- All Superinterfaces:
org.opendaylight.yangtools.yang.binding.BindingObject
,org.opendaylight.yangtools.yang.binding.DataContainer
,org.opendaylight.yangtools.yang.binding.DataObject
,NodeContextRef
- All Known Subinterfaces:
UpdateTableInput
@Generated("mdsal-binding-generator") public interface TableUpdate extends org.opendaylight.yangtools.yang.binding.DataObject, NodeContextRef
Openflow table configuration structure suitable for rpc (contains node-context-ref)This class represents the following YANG schema fragment defined in module sal-table
grouping table-update { uses inv:node-context-ref; container original-table { uses table-type:table-features; } container updated-table { uses table-type:table-features; } }
-
-
Field Summary
Fields Modifier and Type Field Description static @NonNull org.opendaylight.yangtools.yang.common.QName
QNAME
YANG identifier of the statement represented by this class.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description OriginalTable
getOriginalTable()
Return originalTable, ornull
if it is not present.UpdatedTable
getUpdatedTable()
Return updatedTable, ornull
if it is not present.Class<? extends TableUpdate>
implementedInterface()
-
Methods inherited from interface org.opendaylight.yang.gen.v1.urn.opendaylight.inventory.rev130819.NodeContextRef
getNode, requireNode
-
-
-
-
Method Detail
-
implementedInterface
Class<? extends TableUpdate> 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 interfaceNodeContextRef
-
getOriginalTable
OriginalTable getOriginalTable()
Return originalTable, ornull
if it is not present.- Returns:
OriginalTable
originalTable, ornull
if it is not present.
-
getUpdatedTable
UpdatedTable getUpdatedTable()
Return updatedTable, ornull
if it is not present.- Returns:
UpdatedTable
updatedTable, ornull
if it is not present.
-
-