Class ClearActionsInstructionSerializer
- java.lang.Object
-
- org.opendaylight.openflowplugin.impl.protocol.serialization.instructions.AbstractInstructionSerializer<Instruction>
-
- org.opendaylight.openflowplugin.impl.protocol.serialization.instructions.ClearActionsInstructionSerializer
-
- All Implemented Interfaces:
HeaderSerializer<Instruction>
,OFGeneralSerializer
,OFSerializer<Instruction>
public class ClearActionsInstructionSerializer extends AbstractInstructionSerializer<Instruction>
-
-
Constructor Summary
Constructors Constructor Description ClearActionsInstructionSerializer()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected int
getLength()
Get length.protected int
getType()
Get type.void
serialize(Instruction input, io.netty.buffer.ByteBuf outBuffer)
Transforms POJO/DTO into byte message (ByteBuf).-
Methods inherited from class org.opendaylight.openflowplugin.impl.protocol.serialization.instructions.AbstractInstructionSerializer
serializeHeader
-
-
-
-
Method Detail
-
serialize
public void serialize(Instruction input, io.netty.buffer.ByteBuf outBuffer)
Description copied from interface:OFSerializer
Transforms POJO/DTO into byte message (ByteBuf).- Specified by:
serialize
in interfaceOFSerializer<Instruction>
- Overrides:
serialize
in classAbstractInstructionSerializer<Instruction>
- Parameters:
input
- object to be serializedoutBuffer
- output buffer
-
getType
protected int getType()
Description copied from class:AbstractInstructionSerializer
Get type.- Specified by:
getType
in classAbstractInstructionSerializer<Instruction>
- Returns:
- numeric representation of instruction type.
-
getLength
protected int getLength()
Description copied from class:AbstractInstructionSerializer
Get length.- Specified by:
getLength
in classAbstractInstructionSerializer<Instruction>
- Returns:
- instruction length.
-
-