Bug 2756 - Match model update
[openflowjava.git] / openflow-protocol-api / src / main / java / org / opendaylight / openflowjava / protocol / api / keys / MatchEntryDeserializerKey.java
index ebd16ad76757ab82c0cb5e8de636a1a333c8a649..4f995959af2df5b33de0cf6a87c2fa8fbaf04115 100644 (file)
@@ -8,9 +8,7 @@
 
 package org.opendaylight.openflowjava.protocol.api.keys;
 
-import org.opendaylight.openflowjava.protocol.api.extensibility.MessageCodeKey;
-import org.opendaylight.openflowjava.protocol.api.keys.experimenter.ExperimenterDeserializerKey;
-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;
 
 /**
  * @author michal.polkorab
@@ -29,7 +27,7 @@ public final class MatchEntryDeserializerKey extends MessageCodeKey
      */
     public MatchEntryDeserializerKey(short version,
             int oxmClass, int oxmField) {
-        super(version, oxmClass, MatchEntries.class);
+        super(version, oxmClass, MatchEntry.class);
         this.oxmField = oxmField;
     }