Class EthDstCodec
- java.lang.Object
-
- org.opendaylight.openflowjava.nx.codec.match.AbstractMatchCodec
-
- org.opendaylight.openflowjava.nx.codec.match.EthDstCodec
-
- All Implemented Interfaces:
HeaderDeserializer<MatchEntry>
,HeaderSerializer<MatchEntry>
,OFDeserializer<MatchEntry>
,OFGeneralDeserializer
,OFGeneralSerializer
,OFSerializer<MatchEntry>
public class EthDstCodec extends AbstractMatchCodec
-
-
Field Summary
Fields Modifier and Type Field Description static MatchEntryDeserializerKey
DESERIALIZER_KEY
static MatchEntrySerializerKey<Nxm0Class,NxmOfEthDst>
SERIALIZER_KEY
-
Fields inherited from class org.opendaylight.openflowjava.nx.codec.match.AbstractMatchCodec
headerWithMask, headerWithoutMask
-
-
Constructor Summary
Constructors Constructor Description EthDstCodec()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description MatchEntry
deserialize(io.netty.buffer.ByteBuf message)
Transforms byte message into POJO/DTO (of type E).Class<? extends MatchField>
getNxmField()
Returns the nxm_field class.int
getNxmFieldCode()
Returns the numeric representation of nxm_field.Class<? extends OxmClassBase>
getOxmClass()
Returns the oxm_class class.int
getOxmClassCode()
Returns the numeric representation of oxm_class.int
getValueLength()
Returns the match entry value length.void
serialize(MatchEntry input, io.netty.buffer.ByteBuf outBuffer)
Transforms POJO/DTO into byte message (ByteBuf).-
Methods inherited from class org.opendaylight.openflowjava.nx.codec.match.AbstractMatchCodec
buildHeader, deserializeHeader, deserializeHeaderToBuilder, getHeader, getHeaderWithHasMask, getHeaderWithoutHasMask, serializeHeader, serializeHeader
-
-
-
-
Field Detail
-
SERIALIZER_KEY
public static final MatchEntrySerializerKey<Nxm0Class,NxmOfEthDst> SERIALIZER_KEY
-
DESERIALIZER_KEY
public static final MatchEntryDeserializerKey DESERIALIZER_KEY
-
-
Method Detail
-
serialize
public void serialize(MatchEntry input, io.netty.buffer.ByteBuf outBuffer)
Description copied from interface:OFSerializer
Transforms POJO/DTO into byte message (ByteBuf).- Parameters:
input
- object to be serializedoutBuffer
- output buffer
-
deserialize
public MatchEntry deserialize(io.netty.buffer.ByteBuf message)
Description copied from interface:OFDeserializer
Transforms byte message into POJO/DTO (of type E).- Parameters:
message
- message as bytes in ByteBuf- Returns:
- POJO/DTO
-
getNxmFieldCode
public int getNxmFieldCode()
Description copied from class:AbstractMatchCodec
Returns the numeric representation of nxm_field.- Specified by:
getNxmFieldCode
in classAbstractMatchCodec
-
getOxmClassCode
public int getOxmClassCode()
Description copied from class:AbstractMatchCodec
Returns the numeric representation of oxm_class.- Specified by:
getOxmClassCode
in classAbstractMatchCodec
-
getValueLength
public int getValueLength()
Description copied from class:AbstractMatchCodec
Returns the match entry value length.- Specified by:
getValueLength
in classAbstractMatchCodec
-
getNxmField
public Class<? extends MatchField> getNxmField()
Description copied from class:AbstractMatchCodec
Returns the nxm_field class.- Specified by:
getNxmField
in classAbstractMatchCodec
-
getOxmClass
public Class<? extends OxmClassBase> getOxmClass()
Description copied from class:AbstractMatchCodec
Returns the oxm_class class.- Specified by:
getOxmClass
in classAbstractMatchCodec
-
-