Bug 2756 - Action model update
[openflowjava.git] / openflow-protocol-impl / src / main / java / org / opendaylight / openflowjava / protocol / impl / serialization / action / OF13PopPbbActionSerializer.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.serialization.action;
10
11 import io.netty.buffer.ByteBuf;
12
13 import org.opendaylight.openflowjava.protocol.impl.util.ActionConstants;
14 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.common.action.rev150203.actions.grouping.Action;
15
16 /**
17  * @author michal.polkorab
18  *
19  */
20 public class OF13PopPbbActionSerializer extends AbstractActionSerializer {
21
22     @Override
23     public void serialize(Action action, ByteBuf outBuffer) {
24         super.serialize(action, outBuffer);
25         outBuffer.writeZero(ActionConstants.PADDING_IN_ACTION_HEADER);
26     }
27
28     @Override
29     protected int getLength() {
30         return ActionConstants.GENERAL_ACTION_LENGTH;
31     }
32
33     @Override
34     protected int getType() {
35         return ActionConstants.POP_PBB_CODE;
36     }
37
38 }