Make AbstractActionSerializer.serialize() final
[openflowplugin.git] / openflowjava / openflow-protocol-impl / src / main / java / org / opendaylight / openflowjava / protocol / impl / serialization / action / OF10SetTpDstActionSerializer.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 package org.opendaylight.openflowjava.protocol.impl.serialization.action;
9
10 import io.netty.buffer.ByteBuf;
11 import org.opendaylight.openflowjava.protocol.impl.util.ActionConstants;
12 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.common.action.rev150203.action.grouping.action.choice.SetTpDstCase;
13 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.common.action.rev150203.actions.grouping.Action;
14
15 /**
16  * Serializes OF 1.0 SetTpDst actions.
17  *
18  * @author michal.polkorab
19  */
20 public class OF10SetTpDstActionSerializer extends AbstractActionSerializer {
21     public OF10SetTpDstActionSerializer() {
22         super(ActionConstants.SET_TP_DST_CODE, ActionConstants.GENERAL_ACTION_LENGTH);
23     }
24
25     @Override
26     protected void serializeBody(final Action action, final ByteBuf outBuffer) {
27         outBuffer.writeShort(((SetTpDstCase) action.getActionChoice()).getSetTpDstAction()
28                 .getPort().getValue().intValue());
29         outBuffer.writeZero(ActionConstants.PADDING_IN_TP_PORT_ACTION);
30     }
31 }