Bump mdsal to 5.0.2
[openflowplugin.git] / openflowplugin-impl / src / main / java / org / opendaylight / openflowplugin / impl / protocol / serialization / actions / PopPbbActionSerializer.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
9 package org.opendaylight.openflowplugin.impl.protocol.serialization.actions;
10
11 import io.netty.buffer.ByteBuf;
12 import org.opendaylight.openflowjava.protocol.impl.util.ActionConstants;
13 import org.opendaylight.yang.gen.v1.urn.opendaylight.action.types.rev131112.action.Action;
14
15 public class PopPbbActionSerializer extends AbstractActionSerializer<Action> {
16     @Override
17     public void serialize(Action action, ByteBuf outBuffer) {
18         super.serialize(action, outBuffer);
19         outBuffer.writeZero(ActionConstants.PADDING_IN_ACTION_HEADER);
20     }
21
22     @Override
23     protected int getLength() {
24         return ActionConstants.GENERAL_ACTION_LENGTH;
25     }
26
27     @Override
28     protected int getType() {
29         return ActionConstants.POP_PBB_CODE;
30     }
31 }