Bug 1277 - Move ByteBuffUtils to separate bundle
[openflowjava.git] / openflow-protocol-impl / src / main / java / org / opendaylight / openflowjava / protocol / impl / serialization / factories / BarrierInputMessageFactory.java
index 83f77ba685507b77a5f207905b267d36deaeace9..e7b18569e3236aac6c42d226acbabacf4455b592 100644 (file)
@@ -1,49 +1,33 @@
-/* Copyright (C)2013 Pantheon Technologies, s.r.o. All rights reserved. */\r
-package org.opendaylight.openflowjava.protocol.impl.serialization.factories;\r
-\r
-import io.netty.buffer.ByteBuf;\r
-\r
-import org.opendaylight.openflowjava.protocol.impl.serialization.OFSerializer;\r
-import org.opendaylight.openflowjava.protocol.impl.util.ByteBufUtils;\r
-import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.protocol.rev130731.BarrierInput;\r
-\r
-/**\r
- * @author michal.polkorab\r
- *\r
- */\r
-public class BarrierInputMessageFactory implements OFSerializer<BarrierInput> {\r
-\r
-    /** Code type of BarrierRequest message */\r
-    public static final byte MESSAGE_TYPE = 20;\r
-    private static BarrierInputMessageFactory instance;\r
-    private static final int MESSAGE_LENGTH = 8;\r
-    \r
-    private BarrierInputMessageFactory() {\r
-        // do nothing, just singleton\r
-    }\r
-    \r
-    /**\r
-     * @return singleton factory\r
-     */\r
-    public static synchronized BarrierInputMessageFactory getInstance() {\r
-        if (instance == null) {\r
-            instance = new BarrierInputMessageFactory();\r
-        }\r
-        return instance;\r
-    }\r
-    \r
-    @Override\r
-    public void messageToBuffer(short version, ByteBuf out, BarrierInput message) {\r
-        ByteBufUtils.writeOFHeader(instance, message, out);\r
-    }\r
-\r
-    @Override\r
-    public int computeLength() {\r
-        return MESSAGE_LENGTH;\r
-    }\r
-\r
-    @Override\r
-    public byte getMessageType() {\r
-        return MESSAGE_TYPE;\r
-    }\r
-}\r
+/*
+ * Copyright (c) 2013 Pantheon Technologies s.r.o. and others. All rights reserved.
+ *
+ * This program and the accompanying materials are made available under the
+ * terms of the Eclipse Public License v1.0 which accompanies this distribution,
+ * and is available at http://www.eclipse.org/legal/epl-v10.html
+ */
+
+package org.opendaylight.openflowjava.protocol.impl.serialization.factories;
+
+import io.netty.buffer.ByteBuf;
+
+import org.opendaylight.openflowjava.protocol.api.extensibility.OFSerializer;
+import org.opendaylight.openflowjava.protocol.impl.util.ByteBufUtils;
+import org.opendaylight.openflowjava.protocol.api.util.EncodeConstants;
+import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.protocol.rev130731.BarrierInput;
+
+/**
+ * Translates BarrierRequest messages
+ * @author michal.polkorab
+ * @author timotej.kubas
+ */
+public class BarrierInputMessageFactory implements OFSerializer<BarrierInput> {
+
+    /** Code type of BarrierRequest message */
+    private static final byte MESSAGE_TYPE = 20;
+
+    @Override
+    public void serialize(BarrierInput message, ByteBuf outBuffer) {
+        ByteBufUtils.writeOFHeader(MESSAGE_TYPE, message, outBuffer, EncodeConstants.OFHEADER_SIZE);
+    }
+
+}