/* * Copyright (c) 2015 Brocade Communications Systems, Inc. and others. All rights reserved. * * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v1.0 which accompanies this distribution, * and is available at http://www.eclipse.org/legal/epl-v10.html */ package org.opendaylight.controller.cluster.notifications; import static java.util.Objects.requireNonNull; import org.eclipse.jdt.annotation.NonNull; import org.eclipse.jdt.annotation.Nullable; /** * A local message initiated internally from the RaftActor when some state of a leader has changed. * * @author Thomas Pantelis */ public class LeaderStateChanged { private final @NonNull String memberId; private final @Nullable String leaderId; private final short leaderPayloadVersion; public LeaderStateChanged(final @NonNull String memberId, final @Nullable String leaderId, final short leaderPayloadVersion) { this.memberId = requireNonNull(memberId); this.leaderId = leaderId; this.leaderPayloadVersion = leaderPayloadVersion; } public @NonNull String getMemberId() { return memberId; } public @Nullable String getLeaderId() { return leaderId; } public short getLeaderPayloadVersion() { return leaderPayloadVersion; } @Override public String toString() { return "LeaderStateChanged [memberId=" + memberId + ", leaderId=" + leaderId + ", leaderPayloadVersion=" + leaderPayloadVersion + "]"; } }