8babf5721ab997a2509d17d33027f38af78e5048
[openflowjava.git] / openflow-protocol-impl / src / main / java / org / opendaylight / openflowjava / protocol / impl / serialization / action / AbstractActionSerializer.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.api.extensibility.HeaderSerializer;\r
14 import org.opendaylight.openflowjava.protocol.api.extensibility.OFSerializer;\r
15 import org.opendaylight.openflowjava.protocol.impl.util.ActionConstants;\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 abstract class AbstractActionSerializer implements OFSerializer<Action>,\r
23         HeaderSerializer<Action>{\r
24 \r
25     @Override\r
26     public void serialize(Action input, ByteBuf outBuffer) {\r
27         outBuffer.writeShort(getType());\r
28         outBuffer.writeShort(getLength());\r
29     }\r
30 \r
31     @Override\r
32     public void serializeHeader(Action input, ByteBuf outBuffer) {\r
33         outBuffer.writeShort(getType());\r
34         outBuffer.writeShort(ActionConstants.ACTION_IDS_LENGTH);\r
35     }\r
36 \r
37     /**\r
38      * @return numeric representation of action type\r
39      */\r
40     protected abstract int getType();\r
41 \r
42     /**\r
43      * @return action length\r
44      */\r
45     protected abstract int getLength();\r
46 \r
47 }\r