Reduce JSR305 proliferation
[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 static java.util.Objects.requireNonNull;
11
12 import org.eclipse.jdt.annotation.NonNull;
13
14 /**
15  * Server information. This class is not directly Serializable, as it is serialized directly as part of
16  * {@link ServerConfigurationPayload}.
17  *
18  * @author Thomas Pantelis
19  */
20 public final class ServerInfo {
21     private final String id;
22     private final boolean isVoting;
23
24     public ServerInfo(@NonNull String id, boolean isVoting) {
25         this.id = requireNonNull(id);
26         this.isVoting = isVoting;
27     }
28
29     public @NonNull 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 }