Merge "BUG-2329 Add test for anyxmls inside rpc resonse for netcfon-connector"
[controller.git] / opendaylight / md-sal / sal-akka-raft / src / main / java / org / opendaylight / controller / cluster / raft / ReplicatedLogImplEntry.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;
10
11 import org.opendaylight.controller.cluster.raft.protobuff.client.messages.Payload;
12
13 import java.io.Serializable;
14
15 public class ReplicatedLogImplEntry implements ReplicatedLogEntry,
16     Serializable {
17     private static final long serialVersionUID = 1L;
18
19     private final long index;
20     private final long term;
21     private final Payload payload;
22
23     public ReplicatedLogImplEntry(long index, long term, Payload payload) {
24
25         this.index = index;
26         this.term = term;
27         this.payload = payload;
28     }
29
30     @Override public Payload getData() {
31         return payload;
32     }
33
34     @Override public long getTerm() {
35         return term;
36     }
37
38     @Override public long getIndex() {
39         return index;
40     }
41
42     @Override public String toString() {
43         return "Entry{" +
44             "index=" + index +
45             ", term=" + term +
46             '}';
47     }
48 }