BUG-2633 - Netconf northbound mapping.
[controller.git] / opendaylight / md-sal / sal-akka-raft / src / main / java / org / opendaylight / controller / cluster / raft / messages / AppendEntriesReply.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.messages;
10
11 /**
12  * Reply for the AppendEntriesRpc message
13  */
14 public class AppendEntriesReply extends AbstractRaftRPC {
15     private static final long serialVersionUID = -7487547356392536683L;
16
17     // true if follower contained entry matching
18     // prevLogIndex and prevLogTerm
19     private final boolean success;
20
21     // The index of the last entry in the followers log
22     // This will be used to set the matchIndex for the follower on the
23     // Leader
24     private final long logLastIndex;
25
26     private final long logLastTerm;
27
28     // The followerId - this will be used to figure out which follower is
29     // responding
30     private final String followerId;
31
32     public AppendEntriesReply(String followerId, long term, boolean success, long logLastIndex, long logLastTerm) {
33         super(term);
34
35         this.followerId = followerId;
36         this.success = success;
37         this.logLastIndex = logLastIndex;
38         this.logLastTerm = logLastTerm;
39     }
40
41     @Override
42     public long getTerm() {
43         return term;
44     }
45
46     public boolean isSuccess() {
47         return success;
48     }
49
50     public long getLogLastIndex() {
51         return logLastIndex;
52     }
53
54     public long getLogLastTerm() {
55         return logLastTerm;
56     }
57
58     public String getFollowerId() {
59         return followerId;
60     }
61
62     @Override public String toString() {
63         final StringBuilder sb =
64             new StringBuilder("AppendEntriesReply{");
65         sb.append("term=").append(term);
66         sb.append(", success=").append(success);
67         sb.append(", logLastIndex=").append(logLastIndex);
68         sb.append(", logLastTerm=").append(logLastTerm);
69         sb.append(", followerId='").append(followerId).append('\'');
70         sb.append('}');
71         return sb.toString();
72     }
73 }