Bug 2756 - Action model update
[openflowjava.git] / openflow-protocol-impl / src / main / java / org / opendaylight / openflowjava / protocol / impl / deserialization / action / OF13PopVlanActionDeserializer.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.util.EncodeConstants;
14 import org.opendaylight.openflowjava.protocol.impl.util.ActionConstants;
15 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.common.action.rev150203.action.grouping.ActionChoice;
16 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.common.action.rev150203.action.grouping.action.choice.PopVlanCaseBuilder;
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 class OF13PopVlanActionDeserializer extends AbstractActionDeserializer {
25
26     @Override
27     public Action deserialize(ByteBuf input) {
28         ActionBuilder builder = new ActionBuilder();
29         input.skipBytes(2 * EncodeConstants.SIZE_OF_SHORT_IN_BYTES);
30         builder.setActionChoice(getType());
31         input.skipBytes(ActionConstants.PADDING_IN_ACTION_HEADER);
32         return builder.build();
33     }
34
35     @Override
36     protected ActionChoice getType() {
37         return new PopVlanCaseBuilder().build();
38     }
39
40 }