Bug 2756 - Match model update
[openflowjava.git] / openflow-protocol-impl / src / main / java / org / opendaylight / openflowjava / protocol / impl / deserialization / action / AbstractHeaderActionDeserializer.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.impl.util.ActionConstants;
14 import org.opendaylight.openflowjava.protocol.api.util.EncodeConstants;
15 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.common.action.rev130731.actions.grouping.Action;
16 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.common.action.rev130731.actions.grouping.ActionBuilder;
17
18 /**
19  * @author michal.polkorab
20  *
21  */
22 public abstract class AbstractHeaderActionDeserializer extends AbstractActionDeserializer {
23
24     @Override
25     public Action deserialize(ByteBuf input) {
26         ActionBuilder builder = new ActionBuilder();
27         input.skipBytes(EncodeConstants.SIZE_OF_SHORT_IN_BYTES);
28         builder.setType(getType());
29         input.skipBytes(EncodeConstants.SIZE_OF_SHORT_IN_BYTES);
30         input.skipBytes(ActionConstants.PADDING_IN_ACTION_HEADER);
31         return builder.build();
32     }
33 }