4ff7c307c3c0e64c201a569c80adbf5f84b595c9
[openflowjava.git] / openflow-protocol-impl / src / main / java / org / opendaylight / openflowjava / protocol / impl / deserialization / action / AbstractActionDeserializer.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.deserialization.action;\r
10 \r
11 import io.netty.buffer.ByteBuf;\r
12 \r
13 import org.opendaylight.openflowjava.protocol.api.extensibility.HeaderDeserializer;\r
14 import org.opendaylight.openflowjava.protocol.api.extensibility.OFDeserializer;\r
15 import org.opendaylight.openflowjava.protocol.api.util.EncodeConstants;\r
16 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.common.action.rev130731.actions.grouping.Action;\r
17 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.common.action.rev130731.actions.grouping.ActionBuilder;\r
18 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.common.types.rev130731.ActionBase;\r
19 \r
20 /**\r
21  * @author michal.polkorab\r
22  *\r
23  */\r
24 public abstract class AbstractActionDeserializer implements OFDeserializer<Action>,\r
25         HeaderDeserializer<Action> {\r
26 \r
27     @Override\r
28     public Action deserializeHeader(ByteBuf input) {\r
29         ActionBuilder actionBuilder = new ActionBuilder();\r
30         input.skipBytes(EncodeConstants.SIZE_OF_SHORT_IN_BYTES);\r
31         actionBuilder.setType(getType());\r
32         input.skipBytes(EncodeConstants.SIZE_OF_SHORT_IN_BYTES);\r
33         return actionBuilder.build();\r
34     }\r
35 \r
36     protected abstract Class<? extends ActionBase> getType();\r
37 \r
38 }\r