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