Bug 2756 - Match model update
[openflowjava.git] / openflow-protocol-impl / src / main / java / org / opendaylight / openflowjava / protocol / impl / serialization / match / OxmVlanPcpSerializer.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
12 import org.opendaylight.openflowjava.protocol.api.util.EncodeConstants;
13 import org.opendaylight.openflowjava.protocol.api.util.OxmMatchConstants;
14 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.oxm.rev150225.match.entries.grouping.MatchEntry;
15 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.oxm.rev150225.match.entry.value.grouping.match.entry.value.VlanPcpCase;
16
17 /**
18  * @author michal.polkorab
19  *
20  */
21 public class OxmVlanPcpSerializer extends AbstractOxmMatchEntrySerializer {
22
23     @Override
24     public void serialize(MatchEntry entry, ByteBuf outBuffer) {
25         super.serialize(entry, outBuffer);
26         VlanPcpCase entryValue = (VlanPcpCase) entry.getMatchEntryValue();
27         outBuffer.writeByte(entryValue.getVlanPcp().getVlanPcp());
28     }
29
30     @Override
31     protected int getOxmClassCode() {
32         return OxmMatchConstants.OPENFLOW_BASIC_CLASS;
33     }
34
35     @Override
36     protected int getOxmFieldCode() {
37         return OxmMatchConstants.VLAN_PCP;
38     }
39
40     @Override
41     protected int getValueLength() {
42         return EncodeConstants.SIZE_OF_BYTE_IN_BYTES;
43     }
44
45 }