Use ByteBuf.readRetainedSlice()
[openflowplugin.git] / openflowplugin-impl / src / main / java / org / opendaylight / openflowplugin / impl / protocol / serialization / actions / PushPbbActionSerializer.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.PushPbbActionCase;
14 import org.opendaylight.yang.gen.v1.urn.opendaylight.action.types.rev131112.action.action.push.pbb.action._case.PushPbbAction;
15
16 public class PushPbbActionSerializer extends AbstractActionSerializer<PushPbbActionCase> {
17     @Override
18     public void serialize(final PushPbbActionCase action, final ByteBuf outBuffer) {
19         super.serialize(action, outBuffer);
20         final PushPbbAction pushPbbAction = action.getPushPbbAction();
21         outBuffer.writeShort(pushPbbAction.getEthernetType().toJava());
22         outBuffer.writeZero(ActionConstants.ETHERTYPE_ACTION_PADDING);
23     }
24
25     @Override
26     protected int getLength() {
27         return ActionConstants.GENERAL_ACTION_LENGTH;
28     }
29
30     @Override
31     protected int getType() {
32         return ActionConstants.PUSH_PBB_CODE;
33     }
34 }