Bump mdsal to 5.0.2
[openflowplugin.git] / openflowplugin-impl / src / main / java / org / opendaylight / openflowplugin / impl / protocol / serialization / match / UdpSourcePortEntrySerializer.java
index 0eff223f01324bee8ec44ea43cddcee4098089e9..2f12572fbfdb84c29a074440d99bbb28ad3852cc 100644 (file)
@@ -5,11 +5,9 @@
  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
  * and is available at http://www.eclipse.org/legal/epl-v10.html
  */
-
 package org.opendaylight.openflowplugin.impl.protocol.serialization.match;
 
 import io.netty.buffer.ByteBuf;
-import java.util.Objects;
 import org.opendaylight.openflowjava.protocol.api.util.EncodeConstants;
 import org.opendaylight.openflowjava.protocol.api.util.OxmMatchConstants;
 import org.opendaylight.yang.gen.v1.urn.opendaylight.model.match.types.rev131026.Match;
@@ -18,20 +16,20 @@ import org.opendaylight.yang.gen.v1.urn.opendaylight.model.match.types.rev131026
 public class UdpSourcePortEntrySerializer extends AbstractMatchEntrySerializer {
 
     @Override
-    public void serialize(Match match, ByteBuf outBuffer) {
+    public void serialize(final Match match, final ByteBuf outBuffer) {
         super.serialize(match, outBuffer);
-        outBuffer.writeShort(((UdpMatch) match.getLayer4Match()).getUdpSourcePort().getValue());
+        outBuffer.writeShort(((UdpMatch) match.getLayer4Match()).getUdpSourcePort().getValue().toJava());
     }
 
     @Override
-    public boolean matchTypeCheck(Match match) {
-        return Objects.nonNull(match.getLayer4Match())
+    public boolean matchTypeCheck(final Match match) {
+        return match.getLayer4Match() != null
                 && match.getLayer4Match() instanceof UdpMatch
-                && Objects.nonNull(((UdpMatch) match.getLayer4Match()).getUdpSourcePort());
+                && ((UdpMatch) match.getLayer4Match()).getUdpSourcePort() != null;
     }
 
     @Override
-    protected boolean getHasMask(Match match) {
+    protected boolean getHasMask(final Match match) {
         return false;
     }
 
@@ -49,5 +47,4 @@ public class UdpSourcePortEntrySerializer extends AbstractMatchEntrySerializer {
     protected int getValueLength() {
         return EncodeConstants.SIZE_OF_SHORT_IN_BYTES;
     }
-
 }