Interface TableUpdate
-
- All Superinterfaces:
org.opendaylight.yangtools.yang.binding.BindingObject
,org.opendaylight.yangtools.yang.binding.DataContainer
,org.opendaylight.yangtools.yang.binding.DataObject
,org.opendaylight.yang.gen.v1.urn.opendaylight.inventory.rev130819.NodeContextRef
- All Known Subinterfaces:
UpdateTableInput
public interface TableUpdate extends org.opendaylight.yangtools.yang.binding.DataObject, org.opendaylight.yang.gen.v1.urn.opendaylight.inventory.rev130819.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; } }
The schema path to identify an instance is sal-table/table-update
-
-
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 OriginalTable
getOriginalTable()
UpdatedTable
getUpdatedTable()
Class<? extends TableUpdate>
implementedInterface()
-
-
-
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 interfaceorg.opendaylight.yang.gen.v1.urn.opendaylight.inventory.rev130819.NodeContextRef
-
getOriginalTable
OriginalTable getOriginalTable()
- Returns:
org.opendaylight.yang.gen.v1.urn.opendaylight.table.service.rev131026.table.update.OriginalTable
originalTable
, ornull
if not present
-
getUpdatedTable
UpdatedTable getUpdatedTable()
- Returns:
org.opendaylight.yang.gen.v1.urn.opendaylight.table.service.rev131026.table.update.UpdatedTable
updatedTable
, ornull
if not present
-
-