Bug 2756 - Match model update
[openflowjava.git] / openflow-protocol-impl / src / main / java / org / opendaylight / openflowjava / protocol / impl / serialization / match / OxmEthDstSerializer.java
index c6c07bade3660eb1ed4bc3a4cae2242ff9e8eec4..c34299f5a88935538cc7ee0bd211389fca9636e1 100644 (file)
@@ -7,8 +7,12 @@
  */
 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.EthDstCase;
 
 /**
  * @author michal.polkorab
@@ -16,6 +20,16 @@ import org.opendaylight.openflowjava.protocol.api.util.OxmMatchConstants;
  */
 public class OxmEthDstSerializer extends AbstractOxmMacAddressSerializer {
 
+    @Override
+    public void serialize(MatchEntry entry, ByteBuf outBuffer) {
+        super.serialize(entry, outBuffer);
+        EthDstCase entryValue = (EthDstCase) entry.getMatchEntryValue();
+        writeMacAddress(entryValue.getEthDst().getMacAddress(), outBuffer);
+        if (entry.isHasMask()) {
+            writeMask(entryValue.getEthDst().getMask(), outBuffer, EncodeConstants.MAC_ADDRESS_LENGTH);
+        }
+    }
+
     @Override
     protected int getOxmClassCode() {
         return OxmMatchConstants.OPENFLOW_BASIC_CLASS;