Bump versions 9.0.4-SNAPSHOT
[controller.git] / opendaylight / md-sal / sal-akka-raft / src / main / java / org / opendaylight / controller / cluster / raft / base / messages / Replicate.java
index 9bc737a0e3c26b0605bfdb43c64fffad6f4af4cf..edd4986a47b4b36b036f2f0ea209ac32aab69b0c 100644 (file)
@@ -5,36 +5,11 @@
  * 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.controller.cluster.raft.base.messages;
 
 import akka.actor.ActorRef;
-import org.opendaylight.controller.cluster.raft.ReplicatedLogEntry;
-
-import java.io.Serializable;
-
-public class Replicate implements Serializable {
-    private final ActorRef clientActor;
-    private final String identifier;
-    private final ReplicatedLogEntry replicatedLogEntry;
-
-    public Replicate(ActorRef clientActor, String identifier,
-        ReplicatedLogEntry replicatedLogEntry) {
-
-        this.clientActor = clientActor;
-        this.identifier = identifier;
-        this.replicatedLogEntry = replicatedLogEntry;
-    }
-
-    public ActorRef getClientActor() {
-        return clientActor;
-    }
-
-    public String getIdentifier() {
-        return identifier;
-    }
+import org.opendaylight.yangtools.concepts.Identifier;
 
-    public ReplicatedLogEntry getReplicatedLogEntry() {
-        return replicatedLogEntry;
-    }
+public record Replicate(long logIndex, boolean sendImmediate, ActorRef clientActor, Identifier identifier) {
+    // Nothing else here
 }