Class OutputReg2Codec
- java.lang.Object
-
- org.opendaylight.openflowjava.nx.codec.action.AbstractActionCodec
-
- org.opendaylight.openflowjava.nx.codec.action.OutputReg2Codec
-
- All Implemented Interfaces:
OFDeserializer<Action>
,OFGeneralDeserializer
,OFGeneralSerializer
,OFSerializer<Action>
public class OutputReg2Codec extends AbstractActionCodec
-
-
Field Summary
Fields Modifier and Type Field Description static NiciraActionDeserializerKey
DESERIALIZER_KEY
static NiciraActionSerializerKey
SERIALIZER_KEY
static byte
SUBTYPE
-
Constructor Summary
Constructors Constructor Description OutputReg2Codec()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Action
deserialize(io.netty.buffer.ByteBuf message)
Transforms byte message into POJO/DTO (of type E).void
serialize(Action input, io.netty.buffer.ByteBuf outBuffer)
Transforms POJO/DTO into byte message (ByteBuf).-
Methods inherited from class org.opendaylight.openflowjava.nx.codec.action.AbstractActionCodec
deserializeHeader, getExperimenterId, readNxmHeader, serializeHeader, skipPadding, writeNxmHeader, writePaddingAndSetLength
-
-
-
-
Field Detail
-
SUBTYPE
public static final byte SUBTYPE
- See Also:
- Constant Field Values
-
SERIALIZER_KEY
public static final NiciraActionSerializerKey SERIALIZER_KEY
-
DESERIALIZER_KEY
public static final NiciraActionDeserializerKey DESERIALIZER_KEY
-
-
Method Detail
-
deserialize
public Action 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
-
serialize
public void serialize(Action 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
-
-