Bug 2756 - Action model update
[openflowjava.git] / openflow-protocol-impl / src / main / java / org / opendaylight / openflowjava / protocol / impl / serialization / action / OF13SetNwTtlActionSerializer.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.action.grouping.action.choice.SetNwTtlCase;
15 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.common.action.rev150203.actions.grouping.Action;
16
17 /**
18  * @author michal.polkorab
19  *
20  */
21 public class OF13SetNwTtlActionSerializer extends AbstractActionSerializer {
22
23     @Override
24     public void serialize(Action action, ByteBuf outBuffer) {
25         super.serialize(action, outBuffer);
26         outBuffer.writeByte(((SetNwTtlCase) action.getActionChoice()).getSetNwTtlAction().getNwTtl());
27         outBuffer.writeZero(ActionConstants.SET_NW_TTL_PADDING);
28     }
29
30     @Override
31     protected int getType() {
32         return ActionConstants.SET_NW_TTL_CODE;
33     }
34
35     @Override
36     protected int getLength() {
37         return ActionConstants.GENERAL_ACTION_LENGTH;
38     }
39
40 }