Fixup checkstyle
[controller.git] / opendaylight / md-sal / sal-akka-raft / src / main / java / org / opendaylight / controller / cluster / raft / base / messages / Replicate.java
1 /*
2  * Copyright (c) 2014 Cisco Systems, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8
9 package org.opendaylight.controller.cluster.raft.base.messages;
10
11 import akka.actor.ActorRef;
12 import org.opendaylight.controller.cluster.raft.ReplicatedLogEntry;
13 import org.opendaylight.yangtools.concepts.Identifier;
14
15 public class Replicate {
16     private final ActorRef clientActor;
17     private final Identifier identifier;
18     private final ReplicatedLogEntry replicatedLogEntry;
19     private final boolean sendImmediate;
20
21     public Replicate(ActorRef clientActor, Identifier identifier, ReplicatedLogEntry replicatedLogEntry,
22             boolean sendImmediate) {
23         this.clientActor = clientActor;
24         this.identifier = identifier;
25         this.replicatedLogEntry = replicatedLogEntry;
26         this.sendImmediate = sendImmediate;
27     }
28
29     public ActorRef getClientActor() {
30         return clientActor;
31     }
32
33     public Identifier getIdentifier() {
34         return identifier;
35     }
36
37     public ReplicatedLogEntry getReplicatedLogEntry() {
38         return replicatedLogEntry;
39     }
40
41     public boolean isSendImmediate() {
42         return sendImmediate;
43     }
44 }