Remove EncodeConstants.SIZE_OF_{BYTE,SHORT,INT,LONG}_IN_BYTES
[openflowplugin.git] / openflowjava / openflow-protocol-impl / src / main / java / org / opendaylight / openflowjava / protocol / impl / serialization / match / OxmMplsTcSerializer.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.match;
9
10 import io.netty.buffer.ByteBuf;
11 import org.opendaylight.openflowjava.protocol.api.util.OxmMatchConstants;
12 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.oxm.rev150225.match.entries.grouping.MatchEntry;
13 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.oxm.rev150225.match.entry.value.grouping.match.entry.value.MplsTcCase;
14
15 /**
16  * OxmMplsTc match entry serializer.
17  *
18  * @author michal.polkorab
19  */
20 public class OxmMplsTcSerializer extends AbstractOxmMatchEntrySerializer {
21     @Override
22     public void serialize(MatchEntry entry, ByteBuf outBuffer) {
23         super.serialize(entry, outBuffer);
24         MplsTcCase entryValue = (MplsTcCase) entry.getMatchEntryValue();
25         outBuffer.writeByte(entryValue.getMplsTc().getTc().toJava());
26     }
27
28     @Override
29     protected int getOxmClassCode() {
30         return OxmMatchConstants.OPENFLOW_BASIC_CLASS;
31     }
32
33     @Override
34     protected int getOxmFieldCode() {
35         return OxmMatchConstants.MPLS_TC;
36     }
37
38     @Override
39     protected int getValueLength() {
40         return Byte.BYTES;
41     }
42 }