Bump upstreams for 2022.09 Chlorine
[openflowplugin.git] / openflowplugin / src / main / java / org / opendaylight / openflowplugin / openflow / md / core / sal / convertor / match / data / MatchResponseConvertorData.java
index e10b20c5e7ecf8bf2b96644c2537b3821f39d6f8..4689b7fbe51d235ace2d37c6459c8fe4689c6824 100644 (file)
@@ -53,7 +53,7 @@ public class MatchResponseConvertorData extends VersionDatapathIdConvertorData {
     private ProtocolMatchFieldsBuilder protocolMatchFieldsBuilder;
     private TunnelIpv4MatchBuilder tunnelIpv4MatchBuilder;
     private TcpFlagsMatchBuilder tcpFlagsMatchBuilder;
-    private Class<? extends MatchField> oxmMatchField;
+    private MatchField oxmMatchField;
 
     /**
      * Instantiates a new Match convertor data.
@@ -377,7 +377,7 @@ public class MatchResponseConvertorData extends VersionDatapathIdConvertorData {
      *
      * @param oxmMatchField the oxm match field
      */
-    public void setOxmMatchField(final Class<? extends MatchField> oxmMatchField) {
+    public void setOxmMatchField(final MatchField oxmMatchField) {
         this.oxmMatchField = oxmMatchField;
     }
 
@@ -386,7 +386,7 @@ public class MatchResponseConvertorData extends VersionDatapathIdConvertorData {
      *
      * @return the oxm match field
      */
-    public Class<? extends MatchField> getOxmMatchField() {
+    public MatchField getOxmMatchField() {
         return oxmMatchField;
     }
 }