Bug 2756 - Match model update
[openflowjava.git] / openflow-protocol-impl / src / main / java / org / opendaylight / openflowjava / protocol / impl / serialization / match / OxmPbbIsidSerializer.java
index 96c24a681fae9f5df09c86faf23fd5de9847ec68..dba3e87e8cec8363f8e9eb7d9b5115422bda6779 100644 (file)
@@ -11,8 +11,8 @@ 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.augments.rev131002.IsidMatchEntry;
-import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.oxm.rev130731.oxm.fields.grouping.MatchEntries;
+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.PbbIsidCase;
 
 /**
  * @author michal.polkorab
@@ -21,10 +21,13 @@ import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.oxm.rev130731.oxm.
 public class OxmPbbIsidSerializer extends AbstractOxmMatchEntrySerializer {
 
     @Override
-    public void serialize(MatchEntries entry, ByteBuf outBuffer) {
+    public void serialize(MatchEntry entry, ByteBuf outBuffer) {
         super.serialize(entry, outBuffer);
-        outBuffer.writeMedium(entry.getAugmentation(IsidMatchEntry.class).getIsid().intValue());
-        writeMask(entry, outBuffer, getValueLength());
+        PbbIsidCase entryValue = (PbbIsidCase) entry.getMatchEntryValue();
+        outBuffer.writeMedium(entryValue.getPbbIsid().getIsid().intValue());
+        if (entry.isHasMask()) {
+            writeMask(entryValue.getPbbIsid().getMask(), outBuffer, getValueLength());
+        }
     }
 
     @Override