23c95ecc99c0dea3ca144092018fd303d6dd7511
[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 com.google.common.base.Preconditions;
11 import javax.annotation.Nonnull;
12 import javax.annotation.Nullable;
13
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 String memberId;
22     private final String leaderId;
23
24     public LeaderStateChanged(@Nonnull String memberId, @Nullable String leaderId) {
25         this.memberId = Preconditions.checkNotNull(memberId);
26         this.leaderId = leaderId;
27     }
28
29     public @Nonnull String getMemberId() {
30         return memberId;
31     }
32
33     public @Nullable String getLeaderId() {
34         return leaderId;
35     }
36
37     @Override
38     public String toString() {
39         StringBuilder builder = new StringBuilder();
40         builder.append("LeaderStateChanged [memberId=").append(memberId).append(", leaderId=").append(leaderId)
41                 .append("]");
42         return builder.toString();
43     }
44 }