b6231cd4d9c5ab38d57578ae9f1b243836d516b9
[openflowjava.git] / openflow-protocol-impl / src / main / java / org / opendaylight / openflowjava / protocol / impl / serialization / action / OF10OutputActionSerializer.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.MaxLengthAction;\r
15 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.augments.rev131002.PortAction;\r
16 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.common.action.rev130731.actions.grouping.Action;\r
17 \r
18 /**\r
19  * @author michal.polkorab\r
20  *\r
21  */\r
22 public class OF10OutputActionSerializer extends AbstractActionSerializer {\r
23 \r
24     @Override\r
25     public void serialize(Action action, ByteBuf outBuffer) {\r
26         super.serialize(action, outBuffer);\r
27         PortAction port = action.getAugmentation(PortAction.class);\r
28         outBuffer.writeShort(port.getPort().getValue().intValue());\r
29         MaxLengthAction maxlength = action.getAugmentation(MaxLengthAction.class);\r
30         outBuffer.writeShort(maxlength.getMaxLength());\r
31     }\r
32 \r
33     @Override\r
34     protected int getType() {\r
35         return ActionConstants.OUTPUT_CODE;\r
36     }\r
37 \r
38     @Override\r
39     protected int getLength() {\r
40         return ActionConstants.GENERAL_ACTION_LENGTH;\r
41     }\r
42 \r
43 }\r