Copyright update
[openflowjava.git] / openflow-protocol-impl / src / main / java / org / opendaylight / openflowjava / protocol / impl / serialization / factories / RoleRequestInputMessageFactory.java
index b60e14768ad3dbc199a226880676e8f5c821d1c3..285932d25a6c89c52f9276148c114fd3ca890f34 100644 (file)
@@ -1,56 +1,63 @@
-/* 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.RoleRequestInput;\r
-\r
-/**\r
- * Translates RoleRequest messages\r
- * @author michal.polkorab\r
- * @author timotej.kubas\r
- */\r
-public class RoleRequestInputMessageFactory implements OFSerializer<RoleRequestInput> {\r
-\r
-    /** Code type of RoleRequest message */\r
-    public static final byte MESSAGE_TYPE = 24;\r
-    private static final int MESSAGE_LENGTH = 24;\r
-    private static final byte PADDING_IN_ROLE_REQUEST_MESSAGE = 4;\r
-    private static RoleRequestInputMessageFactory instance;\r
-    \r
-    private RoleRequestInputMessageFactory() {\r
-        // do nothing, just singleton\r
-    }\r
-    \r
-    /**\r
-     * @return singleton factory\r
-     */\r
-    public static synchronized RoleRequestInputMessageFactory getInstance() {\r
-        if (instance == null) {\r
-            instance = new RoleRequestInputMessageFactory();\r
-        }\r
-        return instance;\r
-    }\r
-    \r
-    @Override\r
-    public void messageToBuffer(short version, ByteBuf out,\r
-            RoleRequestInput message) {\r
-        ByteBufUtils.writeOFHeader(instance, message, out);\r
-        out.writeInt(message.getRole().getIntValue());\r
-        ByteBufUtils.padBuffer(PADDING_IN_ROLE_REQUEST_MESSAGE, out);\r
-        out.writeLong(message.getGenerationId().longValue());\r
-    }\r
-\r
-    @Override\r
-    public int computeLength(RoleRequestInput message) {\r
-        return MESSAGE_LENGTH;\r
-    }\r
-\r
-    @Override\r
-    public byte getMessageType() {\r
-        return MESSAGE_TYPE;\r
-    }\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.impl.serialization.OFSerializer;
+import org.opendaylight.openflowjava.protocol.impl.util.ByteBufUtils;
+import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.protocol.rev130731.RoleRequestInput;
+
+/**
+ * Translates RoleRequest messages
+ * @author michal.polkorab
+ * @author timotej.kubas
+ */
+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 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;
+    }
+
+}