Interface NxResubmit
-
- All Superinterfaces:
org.opendaylight.yangtools.yang.binding.Augmentable<NxResubmit>,org.opendaylight.yangtools.yang.binding.BindingObject,org.opendaylight.yangtools.yang.binding.ChildOf<NxActionResubmitGrouping>,org.opendaylight.yangtools.yang.binding.DataContainer,org.opendaylight.yangtools.yang.binding.DataObject
public interface NxResubmit extends org.opendaylight.yangtools.yang.binding.ChildOf<NxActionResubmitGrouping>, org.opendaylight.yangtools.yang.binding.Augmentable<NxResubmit>
Re-searches OpenFlow flow table (or the table whose number is specified by table) with the in-port field replaced by port (if port is specified) and executes the actions foundThis class represents the following YANG schema fragment defined in module openflowplugin-extension-nicira-action
container nx-resubmit { leaf in-port { type uint16; default 0xfff8; } leaf table { type uint8 { range "0 .. 255"; } default 255; } }The schema path to identify an instance is openflowplugin-extension-nicira-action/nx-action-resubmit-grouping/nx-resubmitTo create instances of this class use
NxResubmitBuilder.- See Also:
NxResubmitBuilder
-
-
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 org.opendaylight.yangtools.yang.common.Uint16getInPort()@Nullable org.opendaylight.yangtools.yang.common.Uint8getTable()default Class<NxResubmit>implementedInterface()
-
-
-
Method Detail
-
implementedInterface
default Class<NxResubmit> implementedInterface()
- Specified by:
implementedInterfacein interfaceorg.opendaylight.yangtools.yang.binding.DataContainer- Specified by:
implementedInterfacein interfaceorg.opendaylight.yangtools.yang.binding.DataObject
-
getInPort
@Nullable org.opendaylight.yangtools.yang.common.Uint16 getInPort()
- Returns:
org.opendaylight.yangtools.yang.common.Uint16inPort, ornullif not present
-
getTable
@Nullable org.opendaylight.yangtools.yang.common.Uint8 getTable()
- Returns:
org.opendaylight.yangtools.yang.common.Uint8table, ornullif not present
-
-