Merge "BUG-2599 Netconf notification manager initial API and Impl"
[controller.git] / opendaylight / md-sal / sal-akka-raft / src / main / java / org / opendaylight / controller / cluster / raft / messages / RequestVoteReply.java
index 816120cd93927f59ebed8bc74ea364d7061a0453..b3c95d6ecaab2b19524fb4ae06c3c8f6491658c0 100644 (file)
@@ -8,7 +8,8 @@
 
 package org.opendaylight.controller.cluster.raft.messages;
 
-public class RequestVoteReply extends AbstractRaftRPC{
+public class RequestVoteReply extends AbstractRaftRPC {
+    private static final long serialVersionUID = 8427899326488775660L;
 
     // true means candidate received vot
     private final boolean voteGranted;
@@ -18,6 +19,7 @@ public class RequestVoteReply extends AbstractRaftRPC{
         this.voteGranted = voteGranted;
     }
 
+    @Override
     public long getTerm() {
         return term;
     }