Extensibility support (serialization part)
[openflowjava.git] / openflow-protocol-impl / src / main / java / org / opendaylight / openflowjava / protocol / impl / serialization / factories / RoleRequestInputMessageFactory.java
index 285932d25a6c89c52f9276148c114fd3ca890f34..8f8c82e768888649f832239837ff360f63f063e8 100644 (file)
@@ -10,8 +10,9 @@ package org.opendaylight.openflowjava.protocol.impl.serialization.factories;
 
 import io.netty.buffer.ByteBuf;
 
-import org.opendaylight.openflowjava.protocol.impl.serialization.OFSerializer;
+import org.opendaylight.openflowjava.protocol.api.extensibility.OFSerializer;
 import org.opendaylight.openflowjava.protocol.impl.util.ByteBufUtils;
+import org.opendaylight.openflowjava.protocol.impl.util.EncodeConstants;
 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.protocol.rev130731.RoleRequestInput;
 
 /**
@@ -22,42 +23,16 @@ import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.protocol.rev130731
 public class RoleRequestInputMessageFactory implements OFSerializer<RoleRequestInput> {
 
     /** Code type of RoleRequest message */
-    public static final byte MESSAGE_TYPE = 24;
-    private static final int MESSAGE_LENGTH = 24;
+    private static final byte MESSAGE_TYPE = 24;
     private static final byte PADDING_IN_ROLE_REQUEST_MESSAGE = 4;
-    private static RoleRequestInputMessageFactory instance;
-    
-    private RoleRequestInputMessageFactory() {
-        // do nothing, just singleton
-    }
-    
-    /**
-     * @return singleton factory
-     */
-    public static synchronized RoleRequestInputMessageFactory getInstance() {
-        if (instance == null) {
-            instance = new RoleRequestInputMessageFactory();
-        }
-        return instance;
-    }
-    
-    @Override
-    public void messageToBuffer(short version, ByteBuf out,
-            RoleRequestInput message) {
-        ByteBufUtils.writeOFHeader(instance, message, out);
-        out.writeInt(message.getRole().getIntValue());
-        ByteBufUtils.padBuffer(PADDING_IN_ROLE_REQUEST_MESSAGE, out);
-        out.writeLong(message.getGenerationId().longValue());
-    }
-
-    @Override
-    public int computeLength(RoleRequestInput message) {
-        return MESSAGE_LENGTH;
-    }
 
     @Override
-    public byte getMessageType() {
-        return MESSAGE_TYPE;
+    public void serialize(RoleRequestInput message, ByteBuf outBuffer) {
+        ByteBufUtils.writeOFHeader(MESSAGE_TYPE, message, outBuffer, EncodeConstants.EMPTY_LENGTH);
+        outBuffer.writeInt(message.getRole().getIntValue());
+        ByteBufUtils.padBuffer(PADDING_IN_ROLE_REQUEST_MESSAGE, outBuffer);
+        outBuffer.writeLong(message.getGenerationId().longValue());
+        ByteBufUtils.updateOFHeaderLength(outBuffer);
     }
 
-}
+}
\ No newline at end of file