Merge "OPNFLWPLUG-983 Group and flow removal stats are not reported in order"
[openflowplugin.git] / openflowplugin-impl / src / main / java / org / opendaylight / openflowplugin / impl / protocol / deserialization / action / PopMplsActionDeserializer.java
1 /*
2  * Copyright (c) 2016 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 package org.opendaylight.openflowplugin.impl.protocol.deserialization.action;
9
10 import io.netty.buffer.ByteBuf;
11 import org.opendaylight.openflowjava.protocol.impl.util.ActionConstants;
12 import org.opendaylight.yang.gen.v1.urn.opendaylight.action.types.rev131112.action.Action;
13 import org.opendaylight.yang.gen.v1.urn.opendaylight.action.types.rev131112.action.action.PopMplsActionCaseBuilder;
14 import org.opendaylight.yang.gen.v1.urn.opendaylight.action.types.rev131112.action.action.pop.mpls.action._case.PopMplsActionBuilder;
15
16 public class PopMplsActionDeserializer extends AbstractActionDeserializer {
17
18     @Override
19     public Action deserialize(ByteBuf message) {
20         processHeader(message);
21
22         final int ethType = message.readUnsignedShort();
23         message.skipBytes(ActionConstants.ETHERTYPE_ACTION_PADDING);
24
25         return new PopMplsActionCaseBuilder()
26                 .setPopMplsAction(new PopMplsActionBuilder()
27                         .setEthernetType(ethType)
28                         .build())
29                 .build();
30     }
31
32     @Override
33     public Action deserializeHeader(ByteBuf message) {
34         processHeader(message);
35         return new PopMplsActionCaseBuilder().build();
36     }
37
38 }