Merge "Make idle timeout configurable in ssh proxy server"
[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
14 import java.io.Serializable;
15
16 public class Replicate implements Serializable {
17     private static final long serialVersionUID = 1L;
18     private final ActorRef clientActor;
19     private final String identifier;
20     private final ReplicatedLogEntry replicatedLogEntry;
21
22     public Replicate(ActorRef clientActor, String identifier,
23         ReplicatedLogEntry replicatedLogEntry) {
24
25         this.clientActor = clientActor;
26         this.identifier = identifier;
27         this.replicatedLogEntry = replicatedLogEntry;
28     }
29
30     public ActorRef getClientActor() {
31         return clientActor;
32     }
33
34     public String getIdentifier() {
35         return identifier;
36     }
37
38     public ReplicatedLogEntry getReplicatedLogEntry() {
39         return replicatedLogEntry;
40     }
41 }