Bug 2756 - Action model update
[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.rev150203.action.grouping.ActionChoice;
17 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.common.action.rev150203.actions.grouping.Action;
18 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.common.action.rev150203.actions.grouping.ActionBuilder;
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(2 * EncodeConstants.SIZE_OF_SHORT_IN_BYTES);
31         actionBuilder.setActionChoice(getType());
32         return actionBuilder.build();
33     }
34
35     protected abstract ActionChoice getType();
36
37 }