9dbd57905327097e1bf4526128e199a42cc5bb00
[openflowjava.git] / openflow-protocol-impl / src / main / java / org / opendaylight / openflowjava / protocol / impl / deserialization / action / AbstractActionDeserializer.java
1 /*
2  * Copyright (c) 2013 Pantheon Technologies s.r.o. and others. All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8
9 package org.opendaylight.openflowjava.protocol.impl.deserialization.action;
10
11 import io.netty.buffer.ByteBuf;
12
13 import org.opendaylight.openflowjava.protocol.api.extensibility.HeaderDeserializer;
14 import org.opendaylight.openflowjava.protocol.api.extensibility.OFDeserializer;
15 import org.opendaylight.openflowjava.protocol.api.util.EncodeConstants;
16 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.common.action.rev130731.actions.grouping.Action;
17 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.common.action.rev130731.actions.grouping.ActionBuilder;
18 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.common.types.rev130731.ActionBase;
19
20 /**
21  * @author michal.polkorab
22  *
23  */
24 public abstract class AbstractActionDeserializer implements OFDeserializer<Action>,
25         HeaderDeserializer<Action> {
26
27     @Override
28     public Action deserializeHeader(ByteBuf input) {
29         ActionBuilder actionBuilder = new ActionBuilder();
30         input.skipBytes(EncodeConstants.SIZE_OF_SHORT_IN_BYTES);
31         actionBuilder.setType(getType());
32         input.skipBytes(EncodeConstants.SIZE_OF_SHORT_IN_BYTES);
33         return actionBuilder.build();
34     }
35
36     protected abstract Class<? extends ActionBase> getType();
37
38 }