Merge "Serializable classes should have serialVersionUID"
authorTony Tkacik <ttkacik@cisco.com>
Mon, 17 Feb 2014 09:57:38 +0000 (09:57 +0000)
committerGerrit Code Review <gerrit@opendaylight.org>
Mon, 17 Feb 2014 09:57:38 +0000 (09:57 +0000)
opendaylight/arphandler/src/main/java/org/opendaylight/controller/arphandler/ARPReply.java
opendaylight/arphandler/src/main/java/org/opendaylight/controller/arphandler/ARPRequest.java

index e4388c598fb0eec94a0bb6cdb8f070b4f328af2c..a6ee60f65d14b5f47b6f7a6cc2db9331f6847d51 100644 (file)
@@ -18,7 +18,7 @@ import org.opendaylight.controller.sal.utils.HexEncode;
  * ARP Reply event wrapper
  */
 public class ARPReply extends ARPEvent {
-
+    private static final long serialVersionUID = 1L;
     private final NodeConnector port;
     private final byte[] tMac;
     private final byte[] sMac;
index 1b125ddeb20a898e26344e3ee91065f339f6d661..051635ad53f85f5a2344b0f2b23905de958781c1 100644 (file)
@@ -19,6 +19,7 @@ import org.opendaylight.controller.switchmanager.Subnet;
  * specified host
  */
 public class ARPRequest extends ARPEvent {
+    private static final long serialVersionUID = 1L;
     private final Subnet subnet;
     private final HostNodeConnector host;