Merge "Migrate uint/ByteBuf interactions"
[openflowplugin.git] / openflowjava / openflow-protocol-impl / src / main / java / org / opendaylight / openflowjava / protocol / impl / deserialization / MessageTypeCodeKey.java
index d623297e732c5d93930d53c2bf575a2a28881032..6fc496e29ed1596372ab050d924d3bb79055e3f0 100644 (file)
@@ -10,7 +10,8 @@ package org.opendaylight.openflowjava.protocol.impl.deserialization;
 
 
 /**
- * Class used as a key in {@link DeserializerRegistryImpl}
+ * Class used as a key in {@link DeserializerRegistryImpl}.
+ *
  * @author michal.polkorab
  * @author timotej.kubas
  */
@@ -20,6 +21,8 @@ public class MessageTypeCodeKey {
     private final short msgVersion;
 
     /**
+     * Constructor.
+     *
      * @param msgVersion protocol version
      * @param msgType type code of message
      */
@@ -29,14 +32,14 @@ public class MessageTypeCodeKey {
     }
 
     /**
-     * @return the msgType
+     * Returns the msgType.
      */
     public short getMsgType() {
         return msgType;
     }
 
     /**
-     * @return the msgVersion
+     * Returns the msgVersion.
      */
     public short getMsgVersion() {
         return msgVersion;
@@ -71,4 +74,4 @@ public class MessageTypeCodeKey {
         }
         return true;
     }
-}
\ No newline at end of file
+}