a36fa55451adb3cdc7215809b52aaa02ad0d880a
[openflowjava.git] / openflow-protocol-impl / src / main / java / org / opendaylight / openflowjava / protocol / impl / serialization / action / OF13GroupActionSerializer.java
1 /*\r
2  * Copyright (c) 2013 Pantheon Technologies s.r.o. and others. All rights reserved.\r
3  *\r
4  * This program and the accompanying materials are made available under the\r
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,\r
6  * and is available at http://www.eclipse.org/legal/epl-v10.html\r
7  */\r
8 \r
9 package org.opendaylight.openflowjava.protocol.impl.serialization.action;\r
10 \r
11 import io.netty.buffer.ByteBuf;\r
12 \r
13 import org.opendaylight.openflowjava.protocol.impl.util.ActionConstants;\r
14 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.augments.rev131002.GroupIdAction;\r
15 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.common.action.rev130731.actions.grouping.Action;\r
16 \r
17 /**\r
18  * @author michal.polkorab\r
19  *\r
20  */\r
21 public class OF13GroupActionSerializer extends AbstractActionSerializer {\r
22 \r
23     @Override\r
24     public void serialize(Action action, ByteBuf outBuffer) {\r
25         super.serialize(action, outBuffer);\r
26         GroupIdAction groupId = action.getAugmentation(GroupIdAction.class);\r
27         outBuffer.writeInt(groupId.getGroupId().intValue());\r
28     }\r
29 \r
30     @Override\r
31     protected int getType() {\r
32         return ActionConstants.GROUP_CODE;\r
33     }\r
34 \r
35     @Override\r
36     protected int getLength() {\r
37         return ActionConstants.GENERAL_ACTION_LENGTH;\r
38     }\r
39 \r
40 }\r