Copyright update
[openflowjava.git] / openflow-protocol-impl / src / main / java / org / opendaylight / openflowjava / protocol / impl / util / EncodeConstants.java
index 74d7ce310614041b36a0e8390c56a9327dce35da..098ba8d9fe506b7ccbbc3771bc6f68d97bcb91e7 100644 (file)
@@ -1,38 +1,45 @@
-/* Copyright (C)2013 Pantheon Technologies, s.r.o. All rights reserved. */\r
-package org.opendaylight.openflowjava.protocol.impl.util;\r
-\r
-/**\r
- * Stores common constants\r
- * @author michal.polkorab\r
- */\r
-public abstract class EncodeConstants {\r
-\r
-    /** Default OF padding (in bytes) */\r
-    public static final byte PADDING = EncodeConstants.SIZE_OF_LONG_IN_BYTES;\r
-    /** OpenFlow v1.0 wire protocol number */\r
-    public static final byte OF10_VERSION_ID = 0x01;\r
-    /** OpenFlow v1.0 wire protocol number */\r
-    public static final byte OF13_VERSION_ID = 0x04;\r
-    \r
-    /** Length of mac address */\r
-    public static final byte MAC_ADDRESS_LENGTH = 6;\r
-    /** Number of groups in ipv4 address */\r
-    public static final byte GROUPS_IN_IPV4_ADDRESS = 4;\r
-    /** Number of groups in ipv6 address */\r
-    public static final byte GROUPS_IN_IPV6_ADDRESS = 8;\r
-    /** Length of ipv6 address in bytes */\r
-    public static final byte SIZE_OF_IPV6_ADDRESS_IN_BYTES = (8 * Short.SIZE) / Byte.SIZE;\r
-    \r
-    /** Length of long in bytes */\r
-    public static final byte SIZE_OF_LONG_IN_BYTES = Long.SIZE / Byte.SIZE;\r
-    /** Length of int in bytes */\r
-    public static final byte SIZE_OF_INT_IN_BYTES = Integer.SIZE / Byte.SIZE;\r
-    /** Length of short in bytes */\r
-    public static final byte SIZE_OF_SHORT_IN_BYTES = Short.SIZE / Byte.SIZE;\r
-    /** Length of byte in bytes */\r
-    public static final byte SIZE_OF_BYTE_IN_BYTES = Byte.SIZE / Byte.SIZE;\r
-\r
-    \r
-    /** OF v1.0 maximal port name length */\r
-    public static final byte MAX_PORT_NAME_LENGTH = 16;\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.util;
+
+/**
+ * Stores common constants
+ * @author michal.polkorab
+ */
+public abstract class EncodeConstants {
+
+    /** Default OF padding (in bytes) */
+    public static final byte PADDING = EncodeConstants.SIZE_OF_LONG_IN_BYTES;
+    /** OpenFlow v1.0 wire protocol number */
+    public static final byte OF10_VERSION_ID = 0x01;
+    /** OpenFlow v1.0 wire protocol number */
+    public static final byte OF13_VERSION_ID = 0x04;
+    
+    /** Length of mac address */
+    public static final byte MAC_ADDRESS_LENGTH = 6;
+    /** Number of groups in ipv4 address */
+    public static final byte GROUPS_IN_IPV4_ADDRESS = 4;
+    /** Number of groups in ipv6 address */
+    public static final byte GROUPS_IN_IPV6_ADDRESS = 8;
+    /** Length of ipv6 address in bytes */
+    public static final byte SIZE_OF_IPV6_ADDRESS_IN_BYTES = (8 * Short.SIZE) / Byte.SIZE;
+    
+    /** Length of long in bytes */
+    public static final byte SIZE_OF_LONG_IN_BYTES = Long.SIZE / Byte.SIZE;
+    /** Length of int in bytes */
+    public static final byte SIZE_OF_INT_IN_BYTES = Integer.SIZE / Byte.SIZE;
+    /** Length of short in bytes */
+    public static final byte SIZE_OF_SHORT_IN_BYTES = Short.SIZE / Byte.SIZE;
+    /** Length of byte in bytes */
+    public static final byte SIZE_OF_BYTE_IN_BYTES = Byte.SIZE / Byte.SIZE;
+
+    
+    /** OF v1.0 maximal port name length */
+    public static final byte MAX_PORT_NAME_LENGTH = 16;
+}