Improve segmented journal actor metrics
[controller.git] / opendaylight / md-sal / sal-clustering-commons / src / main / java / org / opendaylight / controller / cluster / notifications / LeaderStateChanged.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.notifications;
9
10 import static java.util.Objects.requireNonNull;
11
12 import org.eclipse.jdt.annotation.NonNull;
13 import org.eclipse.jdt.annotation.Nullable;
14
15 /**
16  * A local message initiated internally from the RaftActor when some state of a leader has changed.
17  *
18  * @author Thomas Pantelis
19  */
20 public class LeaderStateChanged {
21     private final @NonNull String memberId;
22     private final @Nullable String leaderId;
23     private final short leaderPayloadVersion;
24
25     public LeaderStateChanged(final @NonNull String memberId, final @Nullable String leaderId,
26             final short leaderPayloadVersion) {
27         this.memberId = requireNonNull(memberId);
28         this.leaderId = leaderId;
29         this.leaderPayloadVersion = leaderPayloadVersion;
30     }
31
32     public @NonNull String getMemberId() {
33         return memberId;
34     }
35
36     public @Nullable String getLeaderId() {
37         return leaderId;
38     }
39
40     public short getLeaderPayloadVersion() {
41         return leaderPayloadVersion;
42     }
43
44     @Override
45     public String toString() {
46         return "LeaderStateChanged [memberId=" + memberId
47                 + ", leaderId=" + leaderId
48                 + ", leaderPayloadVersion=" + leaderPayloadVersion + "]";
49     }
50 }