Bump upstreams for 2022.09 Chlorine
[openflowplugin.git] / extension / openflowjava-extension-eric / src / main / java / org / opendaylight / openflowjava / eric / codec / match / Icmpv6NDReservedCodec.java
index 64aec791b49bef0678e982fcf532c8ce6363e8f3..b4945a85a1ae5d8feae15806f364bc16313b22eb 100644 (file)
@@ -28,7 +28,7 @@ public class Icmpv6NDReservedCodec extends AbstractMatchCodec {
 
     private static final int VALUE_LENGTH = 4;
     public static final MatchEntrySerializerKey<?, ?> SERIALIZER_KEY = new MatchEntrySerializerKey<>(
-             EncodeConstants.OF_VERSION_1_3, EricExpClass.class, Icmpv6NdReserved.class);
+             EncodeConstants.OF_VERSION_1_3, EricExpClass.VALUE, Icmpv6NdReserved.VALUE);
     public static final MatchEntryDeserializerKey DESERIALIZER_KEY = new MatchEntryDeserializerKey(
             EncodeConstants.OF_VERSION_1_3, EricConstants.ERICOXM_OF_EXPERIMENTER_ID,
             EricConstants.ERICOXM_OF_ICMPV6_ND_RESERVED);
@@ -67,12 +67,12 @@ public class Icmpv6NDReservedCodec extends AbstractMatchCodec {
     }
 
     @Override
-    public Class<? extends MatchField> getEricField() {
-        return Icmpv6NdReserved.class;
+    public MatchField getEricField() {
+        return Icmpv6NdReserved.VALUE;
     }
 
     @Override
-    public Class<? extends OxmClassBase> getOxmClass() {
-        return EricExpClass.class;
+    public OxmClassBase getOxmClass() {
+        return EricExpClass.VALUE;
     }
-}
\ No newline at end of file
+}