Bug 2756 - Match model update
[openflowjava.git] / openflow-protocol-impl / src / main / java / org / opendaylight / openflowjava / protocol / impl / serialization / match / OxmTunnelIdSerializer.java
index 035bb7ffbfdbbb310bf3ae01f526c7f02d9f76e6..aea8545a6bf007a3c1fedf7adde415c4e27a24bb 100644 (file)
@@ -7,14 +7,29 @@
  */
 package org.opendaylight.openflowjava.protocol.impl.serialization.match;
 
+import io.netty.buffer.ByteBuf;
+
 import org.opendaylight.openflowjava.protocol.api.util.EncodeConstants;
 import org.opendaylight.openflowjava.protocol.api.util.OxmMatchConstants;
+import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.oxm.rev150225.match.entries.grouping.MatchEntry;
+import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.oxm.rev150225.match.entry.value.grouping.match.entry.value.TunnelIdCase;
 
 /**
  * @author michal.polkorab
  *
  */
-public class OxmTunnelIdSerializer extends AbstractOxmMetadataSerializer {
+public class OxmTunnelIdSerializer extends AbstractOxmMatchEntrySerializer {
+
+    @Override
+    public void serialize(MatchEntry entry, ByteBuf outBuffer) {
+        super.serialize(entry, outBuffer);
+        TunnelIdCase entryValue = (TunnelIdCase) entry.getMatchEntryValue();
+        outBuffer.writeBytes(entryValue.getTunnelId().getTunnelId());
+        if (entry.isHasMask()) {
+            writeMask(entryValue.getTunnelId().getMask(), outBuffer,
+                    EncodeConstants.SIZE_OF_LONG_IN_BYTES);
+        }
+    }
 
     @Override
     protected int getOxmClassCode() {