Implement handling of AppendEntries from a recipient perspective
[controller.git] / opendaylight / md-sal / sal-akka-raft / src / main / java / org / opendaylight / controller / cluster / raft / RaftActor.java
index 5e628bdd1bb035342529b64702c707bf6a458696..186de02fed39dfe5f9485654e08f5acf7f3f22e0 100644 (file)
@@ -103,12 +103,20 @@ public abstract class RaftActor extends UntypedEventsourcedProcessor {
 
     private class ReplicatedLogImpl implements ReplicatedLog {
 
-        @Override public ReplicatedLogEntry getReplicatedLogEntry(long index) {
-            throw new UnsupportedOperationException("getReplicatedLogEntry");
+        @Override public ReplicatedLogEntry get(long index) {
+            throw new UnsupportedOperationException("get");
         }
 
         @Override public ReplicatedLogEntry last() {
             throw new UnsupportedOperationException("last");
         }
+
+        @Override public void removeFrom(long index) {
+            throw new UnsupportedOperationException("removeFrom");
+        }
+
+        @Override public void append(ReplicatedLogEntry replicatedLogEntry) {
+            throw new UnsupportedOperationException("append");
+        }
     }
 }