Created Sample Feature Test Class for Base Feature Repository
[controller.git] / opendaylight / md-sal / sal-akka-raft / src / main / java / org / opendaylight / controller / cluster / raft / internal / messages / ApplyState.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.internal.messages;
10
11 import akka.actor.ActorRef;
12 import org.opendaylight.controller.cluster.raft.ReplicatedLogEntry;
13
14 public class ApplyState {
15     private final ActorRef clientActor;
16     private final String identifier;
17     private final ReplicatedLogEntry replicatedLogEntry;
18
19     public ApplyState(ActorRef clientActor, String identifier,
20         ReplicatedLogEntry replicatedLogEntry) {
21         this.clientActor = clientActor;
22         this.identifier = identifier;
23         this.replicatedLogEntry = replicatedLogEntry;
24     }
25
26     public ActorRef getClientActor() {
27         return clientActor;
28     }
29
30     public String getIdentifier() {
31         return identifier;
32     }
33
34     public ReplicatedLogEntry getReplicatedLogEntry() {
35         return replicatedLogEntry;
36     }
37 }