Mass replace CRLF->LF
[openflowjava.git] / openflow-protocol-impl / src / main / java / org / opendaylight / openflowjava / protocol / impl / serialization / instruction / GoToTableInstructionSerializer.java
index 57ae954f5b704cf84ace939b52d8d70bde95ed15..9e18a12f29d1a3148449eecd22f700e7ebd375a3 100644 (file)
@@ -1,37 +1,36 @@
-/*\r
- * Copyright (c) 2013 Pantheon Technologies s.r.o. and others. All rights reserved.\r
- *\r
- * This program and the accompanying materials are made available under the\r
- * terms of the Eclipse Public License v1.0 which accompanies this distribution,\r
- * and is available at http://www.eclipse.org/legal/epl-v10.html\r
- */\r
-\r
-package org.opendaylight.openflowjava.protocol.impl.serialization.instruction;\r
-\r
-import io.netty.buffer.ByteBuf;\r
-\r
-import org.opendaylight.openflowjava.protocol.impl.util.ByteBufUtils;\r
-import org.opendaylight.openflowjava.protocol.impl.util.InstructionConstants;\r
-import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.augments.rev131002.TableIdInstruction;\r
-import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.common.instruction.rev130731.instructions.grouping.Instruction;\r
-\r
-/**\r
- * @author michal.polkorab\r
- *\r
- */\r
-public class GoToTableInstructionSerializer extends AbstractInstructionSerializer {\r
-\r
-    @Override\r
-    public void serialize(Instruction instruction, ByteBuf outBuffer) {\r
-        outBuffer.writeShort(getType());\r
-        outBuffer.writeShort(InstructionConstants.STANDARD_INSTRUCTION_LENGTH);\r
-        outBuffer.writeByte(instruction.getAugmentation(TableIdInstruction.class).getTableId());\r
-        ByteBufUtils.padBuffer(InstructionConstants.PADDING_IN_GOTO_TABLE, outBuffer);\r
-    }\r
-\r
-    @Override\r
-    protected int getType() {\r
-        return InstructionConstants.GOTO_TABLE_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.instruction;
+
+import io.netty.buffer.ByteBuf;
+
+import org.opendaylight.openflowjava.protocol.impl.util.InstructionConstants;
+import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.augments.rev131002.TableIdInstruction;
+import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.common.instruction.rev130731.instructions.grouping.Instruction;
+
+/**
+ * @author michal.polkorab
+ *
+ */
+public class GoToTableInstructionSerializer extends AbstractInstructionSerializer {
+
+    @Override
+    public void serialize(Instruction instruction, ByteBuf outBuffer) {
+        outBuffer.writeShort(getType());
+        outBuffer.writeShort(InstructionConstants.STANDARD_INSTRUCTION_LENGTH);
+        outBuffer.writeByte(instruction.getAugmentation(TableIdInstruction.class).getTableId());
+        outBuffer.writeZero(InstructionConstants.PADDING_IN_GOTO_TABLE);
+    }
+
+    @Override
+    protected int getType() {
+        return InstructionConstants.GOTO_TABLE_TYPE;
+    }
+
+}