Fix 'INPORT' keyword in port field
[openflowplugin.git] / openflowplugin-impl / src / main / java / org / opendaylight / openflowplugin / impl / protocol / serialization / actions / SetMplsTtlActionSerializer.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 import org.opendaylight.yang.gen.v1.urn.opendaylight.action.types.rev131112.action.action.SetMplsTtlActionCase;
15 import org.opendaylight.yang.gen.v1.urn.opendaylight.action.types.rev131112.action.action.set.mpls.ttl.action._case.SetMplsTtlAction;
16
17 public class SetMplsTtlActionSerializer extends AbstractActionSerializer {
18     @Override
19     public void serialize(Action action, ByteBuf outBuffer) {
20         super.serialize(action, outBuffer);
21         final SetMplsTtlAction setMplsTtlAction = SetMplsTtlActionCase.class.cast(action).getSetMplsTtlAction();
22         outBuffer.writeByte(setMplsTtlAction.getMplsTtl());
23         outBuffer.writeZero(ActionConstants.SET_MPLS_TTL_PADDING);
24     }
25
26     @Override
27     protected int getLength() {
28         return ActionConstants.GENERAL_ACTION_LENGTH;
29     }
30
31     @Override
32     protected int getType() {
33         return ActionConstants.SET_MPLS_TTL_CODE;
34     }
35 }