Copyright update
[openflowjava.git] / openflow-protocol-impl / src / main / java / org / opendaylight / openflowjava / protocol / impl / serialization / factories / OF10HelloInputMessageFactory.java
index 8ca946966a8beedde113139bbfaaf51e6068abc5..68f1a2d4ed11f53a0eaa22bbe879e8632c6ffb8e 100644 (file)
@@ -1,48 +1,55 @@
-/* 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.HelloInput;\r
-\r
-/**\r
- * Translates Hello messages\r
- * @author michal.polkorab\r
- */\r
-public class OF10HelloInputMessageFactory implements OFSerializer<HelloInput> {\r
-\r
-    private static final byte MESSAGE_TYPE = 0;\r
-    private static int MESSAGE_LENGTH = 8;\r
-    private static OF10HelloInputMessageFactory instance;\r
-    \r
-    private OF10HelloInputMessageFactory() {\r
-        // do nothing, just singleton\r
-    }\r
-    \r
-    /**\r
-     * @return singleton factory\r
-     */\r
-    public static synchronized OF10HelloInputMessageFactory getInstance() {\r
-        if (instance == null) {\r
-            instance = new OF10HelloInputMessageFactory();\r
-        }\r
-        return instance;\r
-    }\r
-\r
-    @Override\r
-    public void messageToBuffer(short version, ByteBuf out, HelloInput message) {\r
-        ByteBufUtils.writeOFHeader(instance, message, out);\r
-    }\r
-\r
-    @Override\r
-    public int computeLength(HelloInput message) {\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.impl.serialization.OFSerializer;
+import org.opendaylight.openflowjava.protocol.impl.util.ByteBufUtils;
+import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.protocol.rev130731.HelloInput;
+
+/**
+ * Translates Hello messages
+ * @author michal.polkorab
+ */
+public class OF10HelloInputMessageFactory implements OFSerializer<HelloInput> {
+
+    private static final byte MESSAGE_TYPE = 0;
+    private static int MESSAGE_LENGTH = 8;
+    private static OF10HelloInputMessageFactory instance;
+    
+    private OF10HelloInputMessageFactory() {
+        // do nothing, just singleton
+    }
+    
+    /**
+     * @return singleton factory
+     */
+    public static synchronized OF10HelloInputMessageFactory getInstance() {
+        if (instance == null) {
+            instance = new OF10HelloInputMessageFactory();
+        }
+        return instance;
+    }
+
+    @Override
+    public void messageToBuffer(short version, ByteBuf out, HelloInput message) {
+        ByteBufUtils.writeOFHeader(instance, message, out);
+    }
+
+    @Override
+    public int computeLength(HelloInput message) {
+        return MESSAGE_LENGTH;
+    }
+
+    @Override
+    public byte getMessageType() {
+        return MESSAGE_TYPE;
+    }
+}