c419f7e0f2dcf672ce00831ccdf8fab1a6186761
[controller.git] / opendaylight / md-sal / sal-akka-raft / src / main / java / org / opendaylight / controller / cluster / raft / persisted / ServerInfo.java
1 /*
2  * Copyright (c) 2015 Brocade Communications 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 package org.opendaylight.controller.cluster.raft.persisted;
9
10 import com.google.common.base.Preconditions;
11 import javax.annotation.Nonnull;
12
13 /**
14  * Server information. This class is not directly Serializable, as it is serialized directly as part of
15  * {@link ServerConfigurationPayload}.
16  *
17  * @author Thomas Pantelis
18  */
19 public final class ServerInfo {
20     private final String id;
21     private final boolean isVoting;
22
23     public ServerInfo(@Nonnull String id, boolean isVoting) {
24         this.id = Preconditions.checkNotNull(id);
25         this.isVoting = isVoting;
26     }
27
28     @Nonnull
29     public String getId() {
30         return id;
31     }
32
33     public boolean isVoting() {
34         return isVoting;
35     }
36
37     @Override
38     public int hashCode() {
39         final int prime = 31;
40         int result = 1;
41         result = prime * result + Boolean.hashCode(isVoting);
42         result = prime * result + id.hashCode();
43         return result;
44     }
45
46     @Override
47     public boolean equals(Object obj) {
48         if (this == obj) {
49             return true;
50         }
51         if (!(obj instanceof ServerInfo)) {
52             return false;
53         }
54
55         final ServerInfo other = (ServerInfo) obj;
56         return isVoting == other.isVoting && id.equals(other.id);
57     }
58
59     @Override
60     public String toString() {
61         return "ServerInfo [id=" + id + ", isVoting=" + isVoting + "]";
62     }
63 }