Interface PacketIn
- All Superinterfaces:
org.opendaylight.yangtools.yang.binding.BindingContract<org.opendaylight.yangtools.yang.binding.DataContainer>
,org.opendaylight.yangtools.yang.binding.BindingObject
,org.opendaylight.yangtools.yang.binding.DataContainer
,org.opendaylight.yangtools.yang.binding.DataObject
,MatchGrouping
,OfHeader
- All Known Subinterfaces:
PacketInMessage
@Generated("mdsal-binding-generator")
public interface PacketIn
extends org.opendaylight.yangtools.yang.binding.DataObject, OfHeader, MatchGrouping
This class represents the following YANG schema fragment defined in module openflow-protocol
grouping packet-in { uses ofHeader; leaf buffer-id { type uint32; } leaf total-len { type uint16; } leaf reason { type oft:packet-in-reason; } leaf table-id { type oft:table-id; } leaf cookie { type uint64; } uses oxm:match-grouping; leaf data { type binary; } leaf in-port { type uint16; } }
-
Field Summary
Modifier and TypeFieldDescriptionstatic final @NonNull org.opendaylight.yangtools.yang.common.QName
YANG identifier of the statement represented by this class. -
Method Summary
Modifier and TypeMethodDescriptionorg.opendaylight.yangtools.yang.common.Uint32
Return bufferId, ornull
if it is not present.org.opendaylight.yangtools.yang.common.Uint64
Return cookie, ornull
if it is not present.byte[]
getData()
Return data, ornull
if it is not present.org.opendaylight.yangtools.yang.common.Uint16
Return inPort, ornull
if it is not present.Return reason, ornull
if it is not present.Return tableId, ornull
if it is not present.org.opendaylight.yangtools.yang.common.Uint16
Return totalLen, ornull
if it is not present.default @NonNull org.opendaylight.yangtools.yang.common.Uint32
Return bufferId, guaranteed to be non-null.default @NonNull org.opendaylight.yangtools.yang.common.Uint64
Return cookie, guaranteed to be non-null.default byte @NonNull []
Return data, guaranteed to be non-null.default @NonNull org.opendaylight.yangtools.yang.common.Uint16
Return inPort, guaranteed to be non-null.default @NonNull PacketInReason
Return reason, guaranteed to be non-null.default @NonNull TableId
Return tableId, guaranteed to be non-null.default @NonNull org.opendaylight.yangtools.yang.common.Uint16
Return totalLen, guaranteed to be non-null.Methods inherited from interface org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.oxm.rev150225.MatchGrouping
getMatch, nonnullMatch
Methods inherited from interface org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.protocol.rev130731.OfHeader
getVersion, getXid, requireVersion, requireXid
-
Field Details
-
QNAME
static final @NonNull org.opendaylight.yangtools.yang.common.QName QNAMEYANG identifier of the statement represented by this class.
-
-
Method Details
-
implementedInterface
- Specified by:
implementedInterface
in interfaceorg.opendaylight.yangtools.yang.binding.BindingContract<org.opendaylight.yangtools.yang.binding.DataContainer>
- Specified by:
implementedInterface
in interfaceorg.opendaylight.yangtools.yang.binding.DataObject
- Specified by:
implementedInterface
in interfaceMatchGrouping
- Specified by:
implementedInterface
in interfaceOfHeader
-
getBufferId
org.opendaylight.yangtools.yang.common.Uint32 getBufferId()Return bufferId, ornull
if it is not present.- Returns:
Uint32
bufferId, ornull
if it is not present.
-
requireBufferId
default @NonNull org.opendaylight.yangtools.yang.common.Uint32 requireBufferId()Return bufferId, guaranteed to be non-null.- Returns:
Uint32
bufferId, guaranteed to be non-null.- Throws:
NoSuchElementException
- if bufferId is not present
-
getTotalLen
org.opendaylight.yangtools.yang.common.Uint16 getTotalLen()Return totalLen, ornull
if it is not present.- Returns:
Uint16
totalLen, ornull
if it is not present.
-
requireTotalLen
default @NonNull org.opendaylight.yangtools.yang.common.Uint16 requireTotalLen()Return totalLen, guaranteed to be non-null.- Returns:
Uint16
totalLen, guaranteed to be non-null.- Throws:
NoSuchElementException
- if totalLen is not present
-
getReason
PacketInReason getReason()Return reason, ornull
if it is not present.- Returns:
PacketInReason
reason, ornull
if it is not present.
-
requireReason
Return reason, guaranteed to be non-null.- Returns:
PacketInReason
reason, guaranteed to be non-null.- Throws:
NoSuchElementException
- if reason is not present
-
getTableId
TableId getTableId()Return tableId, ornull
if it is not present.- Returns:
TableId
tableId, ornull
if it is not present.
-
requireTableId
Return tableId, guaranteed to be non-null.- Returns:
TableId
tableId, guaranteed to be non-null.- Throws:
NoSuchElementException
- if tableId is not present
-
getCookie
org.opendaylight.yangtools.yang.common.Uint64 getCookie()Return cookie, ornull
if it is not present.- Returns:
Uint64
cookie, ornull
if it is not present.
-
requireCookie
default @NonNull org.opendaylight.yangtools.yang.common.Uint64 requireCookie()Return cookie, guaranteed to be non-null.- Returns:
Uint64
cookie, guaranteed to be non-null.- Throws:
NoSuchElementException
- if cookie is not present
-
getData
byte[] getData()Return data, ornull
if it is not present.- Returns:
byte[]
data, ornull
if it is not present.
-
requireData
default byte @NonNull [] requireData()Return data, guaranteed to be non-null.- Returns:
byte[]
data, guaranteed to be non-null.- Throws:
NoSuchElementException
- if data is not present
-
getInPort
org.opendaylight.yangtools.yang.common.Uint16 getInPort()Return inPort, ornull
if it is not present.- Returns:
Uint16
inPort, ornull
if it is not present.
-
requireInPort
default @NonNull org.opendaylight.yangtools.yang.common.Uint16 requireInPort()Return inPort, guaranteed to be non-null.- Returns:
Uint16
inPort, guaranteed to be non-null.- Throws:
NoSuchElementException
- if inPort is not present
-