Added hosttracker shell for karaf (rebased)
[controller.git] / opendaylight / md-sal / sal-akka-raft / src / main / java / org / opendaylight / controller / cluster / raft / messages / RequestVote.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 import java.io.Serializable;
12
13 /**
14  * Invoked by candidates to gather votes (§5.2).
15  */
16 public class RequestVote extends AbstractRaftRPC implements Serializable{
17
18     // candidate requesting vote
19     private String candidateId;
20
21     // index of candidate’s last log entry (§5.4)
22     private long lastLogIndex;
23
24     // term of candidate’s last log entry (§5.4)
25     private long lastLogTerm;
26
27     public RequestVote(long term, String candidateId, long lastLogIndex,
28         long lastLogTerm) {
29         super(term);
30         this.candidateId = candidateId;
31         this.lastLogIndex = lastLogIndex;
32         this.lastLogTerm = lastLogTerm;
33     }
34
35     // added for testing while serialize-messages=on
36     public RequestVote() {
37     }
38
39     public long getTerm() {
40         return term;
41     }
42
43     public String getCandidateId() {
44         return candidateId;
45     }
46
47     public long getLastLogIndex() {
48         return lastLogIndex;
49     }
50
51     public long getLastLogTerm() {
52         return lastLogTerm;
53     }
54
55     public void setCandidateId(String candidateId) {
56         this.candidateId = candidateId;
57     }
58
59     public void setLastLogIndex(long lastLogIndex) {
60         this.lastLogIndex = lastLogIndex;
61     }
62
63     public void setLastLogTerm(long lastLogTerm) {
64         this.lastLogTerm = lastLogTerm;
65     }
66 }