Bug 2756 - Match model update
[openflowjava.git] / openflow-protocol-impl / src / main / java / org / opendaylight / openflowjava / protocol / impl / deserialization / instruction / ClearActionsInstructionDeserializer.java
index cc2ef5e839a3cebf4516542fcc583fd156e90fb1..3e0ebc5fda6d92cb0df1c7fbf7ba494134d3ecc3 100644 (file)
@@ -1,42 +1,42 @@
-/*\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.deserialization.instruction;\r
-\r
-import io.netty.buffer.ByteBuf;\r
-\r
-import java.util.ArrayList;\r
-import java.util.List;\r
-\r
-import org.opendaylight.openflowjava.protocol.api.util.EncodeConstants;\r
-import org.opendaylight.openflowjava.protocol.impl.util.InstructionConstants;\r
-import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.augments.rev131002.ActionsInstruction;\r
-import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.augments.rev131002.ActionsInstructionBuilder;\r
-import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.common.action.rev130731.actions.grouping.Action;\r
-import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.common.instruction.rev130731.instructions.grouping.Instruction;\r
-import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.common.instruction.rev130731.instructions.grouping.InstructionBuilder;\r
-\r
-/**\r
- * @author michal.polkorab\r
- *\r
- */\r
-public class ClearActionsInstructionDeserializer extends AbstractInstructionDeserializer {\r
-\r
-    @Override\r
-    public Instruction deserialize(ByteBuf input) {\r
-        InstructionBuilder builder = super.processHeader(input);\r
-        input.skipBytes(EncodeConstants.SIZE_OF_SHORT_IN_BYTES);\r
-        input.skipBytes(InstructionConstants.PADDING_IN_ACTIONS_INSTRUCTION);\r
-        ActionsInstructionBuilder actionsBuilder = \r
-                new ActionsInstructionBuilder();\r
-        List<Action> actions = new ArrayList<>();\r
-        actionsBuilder.setAction(actions);\r
-        builder.addAugmentation(ActionsInstruction.class, actionsBuilder.build());\r
-        return builder.build();\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.deserialization.instruction;
+
+import io.netty.buffer.ByteBuf;
+
+import java.util.ArrayList;
+import java.util.List;
+
+import org.opendaylight.openflowjava.protocol.api.util.EncodeConstants;
+import org.opendaylight.openflowjava.protocol.impl.util.InstructionConstants;
+import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.augments.rev150225.ActionsInstruction;
+import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.augments.rev150225.ActionsInstructionBuilder;
+import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.common.action.rev130731.actions.grouping.Action;
+import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.common.instruction.rev130731.instructions.grouping.Instruction;
+import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.common.instruction.rev130731.instructions.grouping.InstructionBuilder;
+
+/**
+ * @author michal.polkorab
+ *
+ */
+public class ClearActionsInstructionDeserializer extends AbstractInstructionDeserializer {
+
+    @Override
+    public Instruction deserialize(ByteBuf input) {
+        InstructionBuilder builder = super.processHeader(input);
+        input.skipBytes(EncodeConstants.SIZE_OF_SHORT_IN_BYTES);
+        input.skipBytes(InstructionConstants.PADDING_IN_ACTIONS_INSTRUCTION);
+        ActionsInstructionBuilder actionsBuilder =
+                new ActionsInstructionBuilder();
+        List<Action> actions = new ArrayList<>();
+        actionsBuilder.setAction(actions);
+        builder.addAugmentation(ActionsInstruction.class, actionsBuilder.build());
+        return builder.build();
+    }
 }
\ No newline at end of file